File tree 2 files changed +31
-10
lines changed
2 files changed +31
-10
lines changed Original file line number Diff line number Diff line change
1
+ name : Linting
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ lint :
7
+ name : Static code analysis
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ - uses : actions/setup-node@v1
12
+ with :
13
+ node-version : ' 12'
14
+ - run : npm install
15
+ - run : npx run-p check:*
Original file line number Diff line number Diff line change @@ -4,22 +4,28 @@ on: [push]
4
4
5
5
jobs :
6
6
test :
7
- name : Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
7
+ name : Node ${{ matrix.node_version }} on ${{ matrix.os }}
8
8
runs-on : ${{ matrix.os }}
9
9
strategy :
10
10
matrix :
11
- node_version : [10, 12]
11
+ node_version : [10, 12, 13 ]
12
12
os : [ubuntu-latest, windows-latest]
13
13
14
14
steps :
15
- - uses : actions/checkout@v1
15
+ - uses : actions/checkout@v2
16
16
- name : Use Node.js ${{ matrix.node_version }}
17
17
uses : actions/setup-node@v1
18
18
with :
19
- version : ${{ matrix.node_version }}
20
-
21
- - name : npm install, build and test
22
- run : |
23
- npm install
24
- npm run build --if-present
25
- npm test
19
+ node-version : ${{ matrix.node_version }}
20
+ - run : npm install
21
+ - run : npx run-s test:*
22
+ - name : Coveralls Parallel
23
+ uses : coverallsapp/github-action@master
24
+ with :
25
+ github-token : ${{ secrets.github_token }}
26
+ parallel : true
27
+ - name : Coveralls Finished
28
+ uses : coverallsapp/github-action@master
29
+ with :
30
+ github-token : ${{ secrets.github_token }}
31
+ parallel-finished : true
You can’t perform that action at this time.
0 commit comments