diff --git a/.circleci/config.yml b/.circleci/config.yml index 1deeb40..df623b0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,12 @@ jobs: password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout # check out the code in the project directory + - restore_cache: + key: yarn-packages-{{checksum "yarn.lock"}} - run: name: install node command: yarn global add node-gyp && yarn install + - save_cache: + key: yarn-packages-{{checksum "yarn.lock"}} + paths: + - ./node_module