Skip to content

Commit 44c9eb4

Browse files
committed
Update config.yml
1 parent 3aef1bc commit 44c9eb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs: # a collection of steps
2020
# fallback to using the latest cache if no exact match is found (See https://circleci.com/docs/2.0/caching/)
2121
- composer-v1-
2222
- 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:
2424
key: composer-v1-{{ checksum "composer.lock" }}
2525
paths:
2626
- vendor
27-
- restore_cache: # special step to restore the dependency cache if `package-lock.json` does not change
27+
- restore_cache:
2828
keys:
2929
- node-v1-{{ checksum "package-lock.json" }}
3030
# fallback to using the latest cache if no exact match is found (See https://circleci.com/docs/2.0/caching/)

0 commit comments

Comments
 (0)