File tree Expand file tree Collapse file tree 4 files changed +2424
-2391
lines changed
Expand file tree Collapse file tree 4 files changed +2424
-2391
lines changed Original file line number Diff line number Diff line change 11name : PR Checks
22
33on :
4- pull_request :
5- branches : [master, dev]
4+ pull_request :
5+ branches : [master, dev]
66
77jobs :
8- validate :
9- name : Type Check, Build & Audit
10- runs-on : ubuntu-latest
11-
12- steps :
13- - name : Checkout code
14- uses : actions/checkout@v4
15-
16- - name : Setup Node.js
17- uses : actions/setup-node@v4
18- with :
19- node-version : ' 20'
20- cache : ' npm'
21-
22- - name : Install dependencies
23- run : npm ci
24-
25- - name : Type check
26- run : npm run typecheck
27-
28- - name : Build
29- run : npm run build
30-
31- - name : Security audit
32- run : npm audit --audit-level=high
33- continue-on-error : false
8+ validate :
9+ name : Type Check, Build & Audit
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - name : Checkout code
14+ uses : actions/checkout@v4
15+
16+ - name : Setup Node.js
17+ uses : actions/setup-node@v4
18+ with :
19+ node-version : " 20"
20+ cache : " npm"
21+
22+ - name : Install dependencies
23+ run : npm ci
24+
25+ - name : Format check
26+ run : npm run format:check
27+
28+ - name : Type check
29+ run : npm run typecheck
30+
31+ - name : Build
32+ run : npm run build
33+
34+ - name : Security audit
35+ run : npm audit --audit-level=high
36+ continue-on-error : false
Original file line number Diff line number Diff line change 1+ {
2+ "semi": false,
3+ "singleQuote": false,
4+ "tabWidth": 4,
5+ "useTabs": false,
6+ "trailingComma": "all",
7+ "printWidth": 100,
8+ "bracketSpacing": true,
9+ "arrowParens": "always"
10+ }
You can’t perform that action at this time.
0 commit comments