Browse Source

add cache

pull/1/merge step2
Galimede 6 years ago
parent
commit
2be5c80837
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -5,4 +5,10 @@ jobs:
- image: cimg/node:14.10.1 - image: cimg/node:14.10.1
steps: steps:
- checkout - checkout
- restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
- save_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
Loading…
Cancel
Save