File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ jobs: # a collection of steps
20
20
# fallback to using the latest cache if no exact match is found (See https://circleci.com/docs/2.0/caching/)
21
21
- composer-v1-
22
22
- run : composer install -n --prefer-dist
23
- - save_cache : # special step to save the dependency cache with the `composer.lock` cache key template
23
+ - save_cache :
24
24
key : composer-v1-{{ checksum "composer.lock" }}
25
25
paths :
26
26
- vendor
27
- - restore_cache : # special step to restore the dependency cache if `package-lock.json` does not change
27
+ - restore_cache :
28
28
keys :
29
29
- node-v1-{{ checksum "package-lock.json" }}
30
30
# fallback to using the latest cache if no exact match is found (See https://circleci.com/docs/2.0/caching/)
You can’t perform that action at this time.
0 commit comments