Skip to content

Commit

Permalink
comment cache for circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbedouret committed Dec 9, 2023
1 parent 9b9f835 commit 5e4a671
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
# when lock file changes, use increasingly general patterns to restore cache
- yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-v1-{{ .Branch }}-
- yarn-packages-v1-
# - restore_cache:
# keys:
# # when lock file changes, use increasingly general patterns to restore cache
# - yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }}
# - yarn-packages-v1-{{ .Branch }}-
# - yarn-packages-v1-
# Install and save node_modules to cache
- run: yarn install --cache-folder ~/.cache/yarn
- run: yarn install #--cache-folder ~/.cache/yarn
- save_cache:
paths:
- ~/.cache/yarn
Expand Down

0 comments on commit 5e4a671

Please sign in to comment.