Skip to content

Commit 4f982ca

Browse files
committed
Try fixing error
1 parent cdf9b69 commit 4f982ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ env:
3030

3131
# The current recommended version for Managed Runtime:
3232
# https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/upgrade-node-version.html
33+
# NOTE: if you update these values, please also update `IS_MRT_NODE`.
3334
MRT_NODE: 22
3435
MRT_NPM: 10
3536

@@ -68,7 +69,7 @@ jobs:
6869
# For more: https://nodejs.org/en/download/releases/
6970
# (We also use this env var for making sure a step runs once for the current node version)
7071
IS_DEFAULT_NPM: ${{ (matrix.node == 18 && matrix.npm == 10) || (matrix.node == 20 && matrix.npm == 10) || (matrix.node == 22 && matrix.npm == 10) }}
71-
IS_MRT_NODE: ${{ matrix.node == env.MRT_NODE && matrix.npm == env.MRT_NPM }}
72+
IS_MRT_NODE: ${{ matrix.node == 22 && matrix.npm == 10 }}
7273
PROJECT_DIR: generated-retail-react-app-test-project
7374
steps:
7475
- name: Checkout
@@ -169,7 +170,6 @@ jobs:
169170
# (We also use this env var for making sure a step runs once for the current node version)
170171
# Note: For node 18, the default was npm 9 until v18.19.0, when it became npm 10
171172
IS_DEFAULT_NPM: ${{ (matrix.node == 18 && matrix.npm == 10) || (matrix.node == 20 && matrix.npm == 10) || (matrix.node == 22 && matrix.npm == 10) }}
172-
IS_MRT_NODE: ${{ matrix.node == env.MRT_NODE && matrix.npm == env.MRT_NPM }}
173173
steps:
174174
- name: Checkout
175175
uses: actions/checkout@v4

0 commit comments

Comments
 (0)