File tree 3 files changed +28
-9
lines changed
3 files changed +28
-9
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ push :
4
+ pull_request :
5
+ release :
6
+ types :
7
+ - created
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ strategy :
12
+ matrix :
13
+ node-version :
14
+ - 10.x
15
+ - 12.x
16
+ - 14.x
17
+ steps :
18
+ - name : Checkout
19
+ uses : actions/checkout@v2
20
+ - name : Set up Node.js ${{ matrix.node-version }}
21
+ uses : actions/setup-node@v1
22
+ with :
23
+ node-version : ${{ matrix.node-version }}
24
+ - run : yarn install --frozen-lockfile
25
+ - run : yarn lint
26
+ - run : yarn test
27
+ - run : yarn build
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 18
18
"test" : " jest" ,
19
19
"build" : " rollup -c" ,
20
20
"clean" : " rimraf dist" ,
21
- "prepublishOnly" : " run-s clean lint test build" ,
22
- "ci" : " run-s lint test build"
21
+ "prepublishOnly" : " run-s clean lint test build"
23
22
},
24
23
"devDependencies" : {
25
24
"@susisu/eslint-config" : " ^0.0.28" ,
You can’t perform that action at this time.
0 commit comments