Skip to content

Commit 8c51108

Browse files
committed
fix: npm issue
1 parent 552d2aa commit 8c51108

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,15 +185,15 @@ jobs:
185185
parallelism: 2 # Run tests across 2 containers
186186
steps:
187187
- checkout
188+
- install_node_npm:
189+
node_version: << parameters.node_version >>
188190
- run:
189191
name: Configure npm cache
190192
command: npm config set cache .npm-cache
191193
- restore_cache:
192194
keys:
193195
- v1-win-dependencies-{{ checksum "package.json" }}
194196
- v1-win-dependencies- # Fallback key for partial cache restoration
195-
- install_node_npm:
196-
node_version: << parameters.node_version >>
197197
- setup_npm_user
198198
- run: npm ci --loglevel verbose
199199
- save_cache:
@@ -221,15 +221,15 @@ jobs:
221221
parallelism: 2 # Run tests across 2 containers
222222
steps:
223223
- checkout
224+
- install_node_npm:
225+
node_version: << parameters.node_version >>
224226
- run:
225227
name: Configure npm cache
226228
command: npm config set cache .npm-cache
227229
- restore_cache:
228230
keys:
229231
- v1-win-dependencies-{{ checksum "package.json" }}
230232
- v1-win-dependencies- # Fallback key for partial cache restoration
231-
- install_node_npm:
232-
node_version: << parameters.node_version >>
233233
- setup_npm_user
234234
- run: npm ci --loglevel verbose
235235
- save_cache:

0 commit comments

Comments
 (0)