We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aef1bc commit 44c9eb4Copy full SHA for 44c9eb4
.circleci/config.yml
@@ -20,11 +20,11 @@ jobs: # a collection of steps
20
# fallback to using the latest cache if no exact match is found (See https://circleci.com/docs/2.0/caching/)
21
- composer-v1-
22
- run: composer install -n --prefer-dist
23
- - save_cache: # special step to save the dependency cache with the `composer.lock` cache key template
+ - save_cache:
24
key: composer-v1-{{ checksum "composer.lock" }}
25
paths:
26
- vendor
27
- - restore_cache: # special step to restore the dependency cache if `package-lock.json` does not change
+ - restore_cache:
28
keys:
29
- node-v1-{{ checksum "package-lock.json" }}
30
0 commit comments