Skip to content

Commit dd098cb

Browse files
committed
fixup! remove upload step in favour of #11666
1 parent c447b40 commit dd098cb

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ jobs:
2525
fi
2626
2727
- restore_cache:
28-
key: node-modules-{{ checksum "yarn.lock" }}
28+
name: Restore node_modules cache
29+
keys:
30+
- v1-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}
31+
- v1-node-{{ arch }}-{{ .Branch }}-
32+
- v1-node-{{ arch }}-
2933

3034
- run:
3135
name: Nodejs Version
@@ -40,6 +44,7 @@ jobs:
4044
command: ./scripts/circleci/test_entry_point.sh
4145

4246
- save_cache:
43-
key: node-modules-{{ checksum "yarn.lock" }}
47+
name: Save node_modules cache
48+
key: v1-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}
4449
paths:
4550
- node_modules

0 commit comments

Comments
 (0)