File tree Expand file tree Collapse file tree 5 files changed +8
-95
lines changed
Expand file tree Collapse file tree 5 files changed +8
-95
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- name : Launch CI jobs for a package or app
1+ name : CI
22on :
3- workflow_call :
4- inputs :
5- workspace :
6- required : true
7- type : string
3+ push :
4+ branches : ["master"]
5+ pull_request :
86jobs :
97 lint :
108 runs-on : ubuntu-latest
119 steps :
1210 - uses : actions/checkout@v4
1311 - run : npm i
14- - run : npm run lint -w ${{ inputs.workspace }}
12+ - run : npm run lint
1513
1614 typecheck :
1715 runs-on : ubuntu-latest
1816 steps :
1917 - uses : actions/checkout@v4
2018 - run : npm i
21- - run : npm run typecheck -w ${{ inputs.workspace }}
19+ - run : npm run typecheck
2220
2321 test :
2422 runs-on : ubuntu-latest
2523 steps :
2624 - uses : actions/checkout@v4
2725 - run : npm i
28- - run : npm run coverage -w ${{ inputs.workspace }}
26+ - run : npm run coverage
2927
3028 buildcheck :
3129 runs-on : ubuntu-latest
3230 steps :
3331 - uses : actions/checkout@v4
3432 - run : npm i
35- - run : npm run build -w ${{ inputs.workspace }}
33+ - run : npm run build
3634
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments