File tree Expand file tree Collapse file tree 4 files changed +109
-244
lines changed
Expand file tree Collapse file tree 4 files changed +109
-244
lines changed Original file line number Diff line number Diff line change 1010jobs :
1111 build :
1212 runs-on : ${{ matrix.os }}
13- timeout-minutes : 10
13+ timeout-minutes : 30
1414 strategy :
1515 matrix :
16- os : [ubuntu-latest]
17- node-version : [14.x]
18-
16+ os : [ubuntu-latest, macOS-latest]
17+ node-version : [8.12.0, 15.x]
18+ exclude :
19+ - os : macOS-latest
20+ node-version : 8.12.0
21+ fail-fast : false
1922 steps :
2023 - uses : actions/checkout@v2
2124 - name : Use Node.js ${{ matrix.node-version }}
22- uses : actions/setup-node@v1
25+ uses : actions/setup-node@v2
2326 with :
2427 node-version : ${{ matrix.node-version }}
2528 - name : Install dependencies
2629 run : npm ci
2730 - name : Linting
2831 run : npm run format:ci
32+ if : " ${{ matrix.node-version == '15.x' }}"
2933 - name : Tests
30- run : npm test
34+ run : npm test
You can’t perform that action at this time.
0 commit comments