Browse Source

try restore cache

install+cache
Jean-François GAUTREAU 6 years ago
parent
commit
dbf3f1ebf6
  1. 7
      .circleci/config.yml

7
.circleci/config.yml

@ -8,5 +8,10 @@ jobs:
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
steps:
- checkout # check out the code in the project directory
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install
- npm_cache_key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
- save_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
Loading…
Cancel
Save