Skip to content

Commit 5de2d55

Browse files
authored
Merge pull request #63 from netlify-labs/chore/node-15
2 parents 4a3f1b1 + 917781b commit 5de2d55

File tree

4 files changed

+109
-244
lines changed

4 files changed

+109
-244
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,25 @@ on:
1010
jobs:
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

0 commit comments

Comments
 (0)