From 88d619c83146ffa1fe672cdabb5690d828074ca9 Mon Sep 17 00:00:00 2001 From: Matt Brophy Date: Thu, 7 Sep 2023 14:42:26 -0400 Subject: [PATCH] Lock in full branch runs to node 20.5 --- .github/workflows/test-full.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-full.yml b/.github/workflows/test-full.yml index 9eb2c9f9bad..cc6bbf21586 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]" + node_version: "['18', '20.5']" 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]" + node_version: "['18', '20.5']" 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]" + node_version: "['18', '20.5']" 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]" + node_version: "['18', '20.5']" browser: '["msedge"]' integration-macos: @@ -63,5 +63,5 @@ jobs: uses: ./.github/workflows/shared-test-integration.yml with: os: "macos-latest" - node_version: "[18, 20]" + node_version: "['18', '20.5']" browser: '["webkit"]'