Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.

Commit 0d21622

Browse files
authored
Merge pull request #308 from netlify/chore/node-15
chore: support Node 15
2 parents b68dc71 + d30515e commit 0d21622

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
16-
node-version: [8.17.0, 14.x]
16+
node-version: [8.17.0, 15.x]
1717
exclude:
1818
- os: macOS-latest
1919
node-version: 8.17.0
@@ -31,7 +31,7 @@ jobs:
3131
run: npm ci
3232
- name: Linting
3333
run: npm run format:ci
34-
if: "${{ matrix.node-version == '14.x' }}"
34+
if: "${{ matrix.node-version == '15.x' }}"
3535
- name: Tests
3636
run: npm run test:ci
3737
- name: Get test coverage flags
@@ -48,4 +48,4 @@ jobs:
4848
flags: ${{ steps.test-coverage-flags.outputs.os }},${{ steps.test-coverage-flags.outputs.node }}
4949
- name: Build
5050
run: npm run build
51-
if: "${{ matrix.node-version == '14.x' }}"
51+
if: "${{ matrix.node-version == '15.x' }}"

0 commit comments

Comments
 (0)