diff --git a/.circleci/config.yml b/.circleci/config.yml index 6f992d0..f0e2c81 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,6 +21,13 @@ jobs: - image: circleci/node:12 steps: - checkout + - restore cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp - run: yarn install + - save cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + path: + - ./node_modules +