File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : CI
22
33on :
4- push :
5- branches : ["**" ]
6- pull_request :
7- branches : ["**" ]
4+ push :
5+ branches : ['**' ]
6+ pull_request :
7+ branches : ['**' ]
88
99permissions :
10- contents : read
10+ contents : read
1111
1212jobs :
13- build :
14- name : Lint, Format Check, Typecheck, Build
15- runs-on : ubuntu-latest
13+ build :
14+ name : Lint, Format Check, Typecheck, Build
15+ runs-on : ubuntu-latest
1616
17- steps :
18- - name : Checkout
19- uses : actions/checkout@v4
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v4
2020
21- - name : Setup Node.js
22- uses : actions/setup-node@v4
23- with :
24- node-version : 20
25- cache : npm
21+ - name : Setup Node.js
22+ uses : actions/setup-node@v4
23+ with :
24+ node-version : 20
25+ cache : npm
2626
27- - name : Install dependencies
28- run : npm ci
27+ - name : Install dependencies
28+ run : npm ci
2929
30- - name : ESLint
31- run : npm run lint
30+ - name : ESLint
31+ run : npm run lint
3232
33- - name : Format Check (Prettier)
34- run : npx --yes prettier@^3.3.0 --check .
33+ - name : Format Check (Prettier)
34+ run : npx --yes prettier@^3.3.0 --check .
3535
36- - name : Typecheck
37- run : npm run check-types
36+ - name : Typecheck
37+ run : npm run check-types
3838
39- - name : Build
40- run : npm run compile
41-
42- - name : Production Package Build
43- run : npm run package
39+ - name : Build
40+ run : npm run compile
4441
42+ - name : Production Package Build
43+ run : npm run package
You can’t perform that action at this time.
0 commit comments