File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ jobs: # a collection of steps
60
60
- restore_cache: # special step to restore the dependency cache if `composer.lock` does not change
61
61
keys:
62
62
- composer-v1-{{ checksum "composer.lock" }}
63
+ # fallback to using the latest cache if no exact match is found (See https://circleci.com/docs/2.0/caching/)
63
64
- composer-v1-
64
65
- run: composer install -n --prefer-dist
65
66
- save_cache: # special step to save the dependency cache with the `composer.lock` cache key template
@@ -69,6 +70,7 @@ jobs: # a collection of steps
69
70
- restore_cache: # special step to restore the dependency cache if `package.json` does not change
70
71
keys:
71
72
- node-v1-{{ checksum "package.json" }}
73
+ # fallback to using the latest cache if no exact match is found (See https://circleci.com/docs/2.0/caching/)
72
74
- node-v1-
73
75
- run: yarn install
74
76
- save_cache: # special step to save the dependency cache with the `package.json` cache key template
You can’t perform that action at this time.
0 commit comments