File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed
Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Code Quality
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ branches : [main]
8+
9+ jobs :
10+ lint :
11+ runs-on : ubuntu-latest
12+ timeout-minutes : 10
13+
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Install pnpm
19+ uses : pnpm/action-setup@v4
20+
21+ - name : Setup Node.js
22+ uses : actions/setup-node@v4
23+ with :
24+ node-version : 20
25+ cache : pnpm
26+
27+ - name : Install dependencies
28+ run : pnpm install
29+
30+ - name : Lint
31+ run : pnpm lint
32+
33+ typecheck :
34+ runs-on : ubuntu-latest
35+ timeout-minutes : 10
36+
37+ steps :
38+ - name : Checkout
39+ uses : actions/checkout@v4
40+
41+ - name : Install pnpm
42+ uses : pnpm/action-setup@v4
43+
44+ - name : Setup Node.js
45+ uses : actions/setup-node@v4
46+ with :
47+ node-version : 20
48+ cache : pnpm
49+
50+ - name : Install dependencies
51+ run : pnpm install
52+
53+ - name : Typecheck
54+ run : pnpm typecheck
You can’t perform that action at this time.
0 commit comments