File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Node.js CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test :
7
+ runs-on : ubuntu-latest
8
+
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+
12
+ - uses : actions/setup-node@v2
13
+ with :
14
+ node-version : ' 14.x'
15
+
16
+ - name : Install dependencies & build packages
17
+ run : yarn install --frozen-lockfile
18
+
19
+ - name : Run tests
20
+ run : yarn test:ci
Original file line number Diff line number Diff line change 17
17
"type-check:watch" : " yarn type-check -- --watch" ,
18
18
"test:root" : " jest --watch" ,
19
19
"test:packages" : " lerna exec --scope=@ackee/antonio-core -- jest --watch" ,
20
+ "test:ci" : " lerna exec --scope=@ackee/antonio-core -- jest" ,
20
21
"start" : " yarn build && onchange 'packages/@ackee/*/src/**/*.ts' -- yarn release:yalc" ,
21
22
"changelog" : " gitmoji-changelog" ,
22
23
"format" : " prettier --config ./prettier.config.js --write 'packages/@ackee/*/src/**/*.ts' '*.{js,json}' --loglevel warn" ,
You can’t perform that action at this time.
0 commit comments