File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ jobs:
32
32
- checkout
33
33
- restore_cache :
34
34
keys :
35
- - yarn-dependencies-{{ checksum "yarn.lock" }}
36
- - yarn-dependencies-
35
+ - yarn-dependencies-cypress- {{ checksum "yarn.lock" }}
36
+ - yarn-dependencies-cypress-
37
37
- run :
38
38
name : Install dependencies
39
39
command : yarn install --frozen-lockfile
40
40
- save_cache :
41
- key : yarn-dependencies-{{ checksum "yarn.lock" }}
41
+ key : yarn-dependencies-cypress- {{ checksum "yarn.lock" }}
42
42
paths :
43
43
- ~/.cache
44
44
- run : yarn e2e:prod
@@ -50,10 +50,15 @@ jobs:
50
50
- checkout
51
51
- restore_cache :
52
52
keys :
53
- - yarn-dependencies-{{ checksum "yarn.lock" }}
53
+ - yarn-dependencies-node-{{ checksum "yarn.lock" }}
54
+ - yarn-dependencies-node-
54
55
- run :
55
56
name : Install dependencies
56
57
command : yarn install --frozen-lockfile
58
+ - save_cache :
59
+ key : yarn-dependencies-node-{{ checksum "yarn.lock" }}
60
+ paths :
61
+ - ~/.cache
57
62
- run :
58
63
name : Set env variables
59
64
command : echo 'export VERSION=$(echo $CIRCLE_SHA1 | cut -c -7)' >> $BASH_ENV
You can’t perform that action at this time.
0 commit comments