Update issue templates #213
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
concurrency: | |
group: test-${{ github.github.base_ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
run: pnpm -w build | |
- name: Run codegen | |
run: pnpm --filter @7nohe/react-app generate:api | |
- name: Archive generated query file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: generated-query-file-${{ matrix.os }} | |
path: examples/react-app/openapi/queries/index.ts | |
- name: Run tsc | |
run: pnpm --filter @7nohe/react-app test:generated | |
- name: Run test | |
run: pnpm test |