File tree Expand file tree Collapse file tree 2 files changed +28
-6
lines changed
Expand file tree Collapse file tree 2 files changed +28
-6
lines changed Original file line number Diff line number Diff line change 2323 node-version : 20
2424 cache : pnpm
2525 - run : pnpm install
26- - name : Type Check (Mobile)
27- run : npx tsc --noEmit
28- - name : Type Check (Docs)
29- run : cd apps/docs && pnpm run types:check
30- - name : Lint
31- run : npx eslint . --ext .ts,.tsx
3226 - name : Test
3327 run : npx jest --ci --coverage
3428 - name : Upload coverage
Original file line number Diff line number Diff line change 1+ name : Lint & Type Check
2+
3+ on :
4+ workflow_dispatch :
5+
6+ permissions :
7+ contents : read
8+
9+ jobs :
10+ quality :
11+ name : Lint & Type Check
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v4
15+ - uses : pnpm/action-setup@v4
16+ with :
17+ version : 10
18+ - uses : actions/setup-node@v4
19+ with :
20+ node-version : 20
21+ cache : pnpm
22+ - run : pnpm install
23+ - name : Type Check (Mobile)
24+ run : npx tsc --noEmit
25+ - name : Type Check (Docs)
26+ run : cd apps/docs && pnpm run types:check
27+ - name : Lint
28+ run : npx eslint . --ext .ts,.tsx
You can’t perform that action at this time.
0 commit comments