We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0319b commit ba3533aCopy full SHA for ba3533a
.circleci/config.yml
@@ -192,8 +192,17 @@ jobs:
192
- checkout_with_cache
193
- install_node_npm:
194
node_version: << parameters.node_version >>
195
+ - restore_cache:
196
+ keys:
197
+ - v1-win-dependencies-{{ checksum "package.json" }}
198
+ - v1-win-dependencies- # Fallback key for partial cache restoration
199
- setup_npm_user
200
- run: npm ci
201
+ - save_cache:
202
+ key: v1-win-dependencies-{{ checksum "package.json" }}
203
+ paths:
204
+ - node_modules
205
+
206
- run: docker version
207
- run:
208
name: Run Windows tests in parallel
0 commit comments