Browse Source

Update config.yml

pull/3/merge
Francois Lannoy 6 years ago
parent
commit
8b509bf025
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -7,12 +7,10 @@ jobs:
- checkout # check out the code in the project directory - checkout # check out the code in the project directory
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
- restore_cache: - restore_cache:
keys:
- v1-npm-deps-{{ checksum "yarn.lock" }}
key: yarn-packages-{{ checksum "yarn.lock" }}
- save_cache: - save_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }
key: yarn-packages-{{ checksum "yarn.lock" }
paths: paths:
- tmp/cache
- ~/.cache/yarn
Loading…
Cancel
Save