From 87234cbd7dbbb577d926b416b8e568ef9643bf36 Mon Sep 17 00:00:00 2001 From: Matt Brophy Date: Fri, 8 Sep 2023 15:28:57 -0400 Subject: [PATCH] Revert back to latest versions of node in CI (#7385) --- .github/workflows/test-full.yml | 10 +++++----- .github/workflows/test-pr-ubuntu.yml | 4 ++-- .github/workflows/test-pr-windows-macos.yml | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test-full.yml b/.github/workflows/test-full.yml index cc6bbf21586..9eb2c9f9bad 100644 --- a/.github/workflows/test-full.yml +++ b/.github/workflows/test-full.yml @@ -29,7 +29,7 @@ jobs: uses: ./.github/workflows/shared-test-unit.yml with: os: "ubuntu-latest" - node_version: "['18', '20.5']" + node_version: "[18, 20]" unit-windows: name: "๐Ÿงช Unit Test" @@ -37,7 +37,7 @@ jobs: uses: ./.github/workflows/shared-test-unit.yml with: os: "windows-latest" - node_version: "['18', '20.5']" + node_version: "[18, 20]" integration-ubuntu: name: "๐Ÿ‘€ Integration Test" @@ -45,7 +45,7 @@ jobs: uses: ./.github/workflows/shared-test-integration.yml with: os: "ubuntu-latest" - node_version: "['18', '20.5']" + node_version: "[18, 20]" browser: '["chromium", "firefox"]' integration-windows: @@ -54,7 +54,7 @@ jobs: uses: ./.github/workflows/shared-test-integration.yml with: os: "windows-latest" - node_version: "['18', '20.5']" + node_version: "[18, 20]" browser: '["msedge"]' integration-macos: @@ -63,5 +63,5 @@ jobs: uses: ./.github/workflows/shared-test-integration.yml with: os: "macos-latest" - node_version: "['18', '20.5']" + node_version: "[18, 20]" browser: '["webkit"]' diff --git a/.github/workflows/test-pr-ubuntu.yml b/.github/workflows/test-pr-ubuntu.yml index 4cecb5d0ab9..2e7b86eef3e 100644 --- a/.github/workflows/test-pr-ubuntu.yml +++ b/.github/workflows/test-pr-ubuntu.yml @@ -26,7 +26,7 @@ jobs: uses: ./.github/workflows/shared-test-unit.yml with: os: "ubuntu-latest" - node_version: '["20.5.1"]' + node_version: '["latest"]' integration-chromium: name: "๐Ÿ‘€ Integration Test" @@ -34,5 +34,5 @@ jobs: uses: ./.github/workflows/shared-test-integration.yml with: os: "ubuntu-latest" - node_version: '["20.5.1"]' + node_version: '["latest"]' browser: '["chromium"]' diff --git a/.github/workflows/test-pr-windows-macos.yml b/.github/workflows/test-pr-windows-macos.yml index 6115528bf98..d0affe8f70e 100644 --- a/.github/workflows/test-pr-windows-macos.yml +++ b/.github/workflows/test-pr-windows-macos.yml @@ -20,7 +20,7 @@ jobs: uses: ./.github/workflows/shared-test-unit.yml with: os: "windows-latest" - node_version: '["20.5.1"]' + node_version: '["latest"]' integration-firefox: name: "๐Ÿ‘€ Integration Test" @@ -28,7 +28,7 @@ jobs: uses: ./.github/workflows/shared-test-integration.yml with: os: "ubuntu-latest" - node_version: '["20.5.1"]' + node_version: '["latest"]' browser: '["firefox"]' integration-msedge: @@ -37,7 +37,7 @@ jobs: uses: ./.github/workflows/shared-test-integration.yml with: os: "windows-latest" - node_version: '["20.5.1"]' + node_version: '["latest"]' browser: '["msedge"]' integration-webkit: @@ -46,5 +46,5 @@ jobs: uses: ./.github/workflows/shared-test-integration.yml with: os: "macos-latest" - node_version: '["20.5.1"]' + node_version: '["latest"]' browser: '["webkit"]'