diff --git a/.circleci/config.yml b/.circleci/config.yml index 4e986c0..863746f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,5 +8,10 @@ jobs: password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout # check out the code in the project directory + - restore_cache: + keys: + - npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - - npm_cache_key: npm-v1-dependencies-{{ checksum "yarn.lock" }} \ No newline at end of file + - save_cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + \ No newline at end of file