File tree Expand file tree Collapse file tree 2 files changed +2
-38
lines changed
Expand file tree Collapse file tree 2 files changed +2
-38
lines changed Original file line number Diff line number Diff line change 2323 - name : Run ESLint
2424 run : npm run lint
2525
26- typecheck :
27- runs-on : ubuntu-latest
28-
29- steps :
30- - name : Checkout code
31- uses : actions/checkout@v4.1.1
32-
33- - name : Set up Node.js
34- uses : actions/setup-node@v4.0.1
35- with :
36- node-version : 20
37-
38- - name : Install dependencies
39- run : npm ci
40-
41- - name : Run typecheck
42- run : npm run typecheck
43-
4426 build :
4527 runs-on : ubuntu-latest
4628
6042 run : npm run build
6143
6244 publish :
63- needs : [linting, typecheck, build]
45+ needs : [linting, build]
6446 runs-on : ubuntu-latest
65- if : always() && needs.linting.result == 'success' && needs.typecheck.result == 'success' && needs. build.result == 'success'
47+ if : always() && needs.linting.result == 'success' && needs.build.result == 'success'
6648
6749 steps :
6850 - name : Checkout code
Original file line number Diff line number Diff line change 2323 - name : Run ESLint
2424 run : npm run lint
2525
26- typecheck :
27- runs-on : ubuntu-latest
28-
29- steps :
30- - name : Checkout code
31- uses : actions/checkout@v4.1.1
32-
33- - name : Set up Node.js
34- uses : actions/setup-node@v4.0.1
35- with :
36- node-version : 20
37-
38- - name : Install dependencies
39- run : npm ci
40-
41- - name : Run typecheck
42- run : npm run typecheck
43-
4426 build :
4527 runs-on : ubuntu-latest
4628
You can’t perform that action at this time.
0 commit comments