Browse Source

yml: adding save cache

pull/2/head
Neel Coffin 6 years ago
parent
commit
24990958e1
  1. 5
      .circleci/config.yml

5
.circleci/config.yml

@ -7,5 +7,10 @@ jobs:
- checkout
- run: yarn global add node-gyp && yarn install
- restore_cache:
name: restore yarn package cache
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- save_cache:
name: sa ve yarn package cache
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
Loading…
Cancel
Save