File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 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
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
You can’t perform that action at this time.
0 commit comments