From 6f07fcdbd9cf9e3960aadc4821f4ce5f2d514ae8 Mon Sep 17 00:00:00 2001 From: Ian Sutherland Date: Mon, 1 Nov 2021 14:26:47 -0700 Subject: [PATCH] Add Node 17 to test matrix --- .github/workflows/build.yml | 2 +- .github/workflows/integration.yml | 2 +- .github/workflows/lint.yml | 2 +- azure-pipelines-test-job.yml | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e70e13cb520..090900ba787 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '14' + node-version: '16' cache: 'npm' - name: Install npm@7 run: npm i -g npm@7 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index fa1369e7d4c..eae32222631 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] - node: ['14', '16'] + node: ['14', '16', '17'] steps: - uses: actions/checkout@v2 - name: Setup node diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ba82da56f35..aa11f7c4b9c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '14' + node-version: '16' cache: 'npm' - name: Install npm@7 run: npm i -g npm@7 diff --git a/azure-pipelines-test-job.yml b/azure-pipelines-test-job.yml index fb3ce4eff9c..b18192038e8 100644 --- a/azure-pipelines-test-job.yml +++ b/azure-pipelines-test-job.yml @@ -8,6 +8,7 @@ parameters: configurations: LinuxNode14: { vmImage: 'ubuntu-latest', nodeVersion: 14.x } LinuxNode16: { vmImage: 'ubuntu-latest', nodeVersion: 16.x } + LinuxNode17: { vmImage: 'ubuntu-latest', nodeVersion: 17.x } jobs: - job: ${{ parameters.name }}