Skip to content

fix corpus creation #67

fix corpus creation

fix corpus creation #67

Workflow file for this run

name: Validate
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
- dev
push:
branches:
- main
- dev
jobs:
validate:
name: Validate
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: true
matrix:
node-version: [18.x]
os: [ubuntu-latest]
steps:
- name: Checkout respository
uses: actions/checkout@v3
# necessary because `actions/setup-node` does not yet support `corepack`.
# @see https://github.com/actions/setup-node/issues/531
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format
run: pnpm run format:check
- name: Lint
run: pnpm run lint:check
- name: Typecheck
run: pnpm run types:check
- name: Test
run: pnpm run test
- name: Build app
run: pnpm run build
env:
NUXT_PUBLIC_APP_BASE_URL: "http://localhost:3000"
NUXT_PUBLIC_REDMINE_ID: "${{ vars.NUXT_PUBLIC_REDMINE_ID }}"
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
build-deploy:
if: ${{ github.event_name == 'push' }}
needs: [validate]
uses: ./.github/workflows/build-deploy.yml
secrets: inherit