File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 7
7
branches : [ master ]
8
8
9
9
jobs :
10
- build :
10
+ lint :
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - uses : pnpm/action-setup@v2
16
+ name : Install pnpm
17
+ with :
18
+ version : 8
19
+ run_install : false
20
+ - name : Use Node.js 20
21
+ uses : actions/setup-node@v3
22
+ with :
23
+ node-version : 20
24
+ cache : pnpm
25
+ - run : pnpm install
26
+ - run : pnpm lint
11
27
28
+ build :
12
29
runs-on : ubuntu-latest
13
30
14
31
strategy :
Original file line number Diff line number Diff line change 24
24
"scripts" : {
25
25
"changelog" : " lerna-changelog" ,
26
26
"lint" : " eslint ." ,
27
- "test" : " npm-run-all lint test:jest" ,
28
- "test:jest" : " jest"
27
+ "test" : " jest"
29
28
},
30
29
"jest" : {
31
30
"testMatch" : [
49
48
"globals" : " ^15.0.0" ,
50
49
"jest" : " ^29.7.0" ,
51
50
"lerna-changelog" : " ^2.2.0" ,
52
- "npm-run-all" : " ^4.1.5" ,
53
51
"prettier" : " ^3.2.5" ,
54
52
"release-it" : " ^17.1.1"
55
53
},
You can’t perform that action at this time.
0 commit comments