-
-
Notifications
You must be signed in to change notification settings - Fork 28
57 lines (47 loc) · 1.32 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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 biome
run: pnpm biome check .
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Run test
run: pnpm test
- name: Report coverage
if: always() && matrix.os == 'ubuntu-latest'
uses: davelosert/vitest-coverage-report-action@v2