File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -264,12 +264,25 @@ jobs:
264
264
run : conda list
265
265
266
266
- name : Cache node_modules
267
+ id : cache-node-modules
267
268
uses : actions/cache@v2
268
269
with :
269
270
path : ' **/node_modules'
270
271
key : |
271
272
${{ env.CACHE_EPOCH }}-${{ runner.os }}-node-atest-${{ hashFiles('yarn.lock') }}
272
273
274
+ - name : Cache yarn packages
275
+ id : cache-yarn-packages
276
+ if : steps.cache-node-modules.outputs.cache-hit != 'true'
277
+ uses : actions/cache@v2
278
+ with :
279
+ path : .yarn-packages
280
+ key : |
281
+ ${{ env.CACHE_EPOCH }}-yarn-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
282
+ restore-keys : |
283
+ ${{ env.CACHE_EPOCH }}-yarn-${{ runner.os }}-
284
+ ${{ env.CACHE_EPOCH }}-yarn-
285
+
273
286
- uses : actions/cache@v2
274
287
with :
275
288
path : ~/.julia/artifacts
You can’t perform that action at this time.
0 commit comments