File tree Expand file tree Collapse file tree 3 files changed +45
-1
lines changed
Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: Coveralls
55jobs :
66
77 build :
8- name : Build
8+ name : coveralls/build
99 runs-on : ubuntu-latest
1010 steps :
1111
Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on : ["push","pull_request"]
4+
5+ jobs :
6+ build :
7+ name : Lint
8+
9+ runs-on : ubuntu-latest
10+
11+ strategy :
12+ matrix :
13+ node-version : [14.x]
14+
15+ steps :
16+ - uses : actions/checkout@v2
17+ - name : Use Node.js ${{ matrix.node-version }}
18+ uses : actions/setup-node@v1
19+ with :
20+ node-version : ${{ matrix.node-version }}
21+ - run : yarn install
22+ - run : yarn lint
Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on : ["push","pull_request"]
4+
5+ jobs :
6+ build :
7+ name : Test with Node.js ${{ matrix.node-version }}
8+
9+ runs-on : ubuntu-latest
10+
11+ strategy :
12+ matrix :
13+ node-version : [10.x, 12.x, 14.x]
14+
15+ steps :
16+ - uses : actions/checkout@v2
17+ - name : Use Node.js ${{ matrix.node-version }}
18+ uses : actions/setup-node@v1
19+ with :
20+ node-version : ${{ matrix.node-version }}
21+ - run : yarn install
22+ - run : yarn test
You can’t perform that action at this time.
0 commit comments