Skip to content

Commit d82dde6

Browse files
committed
Add Node 17 to test matrix
1 parent 9d0369b commit d82dde6

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '14'
12+
node-version: '16'
1313
cache: 'npm'
1414
- name: Install npm@7
1515
run: npm i -g npm@7

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
17-
node: ['14', '16']
17+
node: ['14', '16', '17']
1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Setup node

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '14'
12+
node-version: '16'
1313
cache: 'npm'
1414
- name: Install npm@7
1515
run: npm i -g npm@7

azure-pipelines-test-job.yml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ parameters:
88
configurations:
99
LinuxNode14: { vmImage: 'ubuntu-latest', nodeVersion: 14.x }
1010
LinuxNode16: { vmImage: 'ubuntu-latest', nodeVersion: 16.x }
11+
LinuxNode17: { vmImage: 'ubuntu-latest', nodeVersion: 17.x }
1112

1213
jobs:
1314
- job: ${{ parameters.name }}

0 commit comments

Comments
 (0)