diff --git a/.circleci/config.yml b/.circleci/config.yml index 3b73e15..138bd57 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,12 @@ jobs: - image: cimg/node:14.10.1 # the primary container, where your job's commands are run steps: - restore_cache: - keys: + keys: + - npm-v1-dependencies-{{ checksum "yarn.lock" }} + - save_cache: + paths: + - ~/.cache/yarn + key: - npm-v1-dependencies-{{ checksum "yarn.lock" }}