Browse Source

Update config.yml

main
Spokequenouille 6 years ago
committed by GitHub
parent
commit
de93e32895
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -8,6 +8,12 @@ jobs:
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
steps:
- checkout # check out the code in the project directory
- restore_cache:
key: yarn-packages-{{checksum "yarn.lock"}}
- run:
name: install node
command: yarn global add node-gyp && yarn install
- save_cache:
key: yarn-packages-{{checksum "yarn.lock"}}
paths:
- ./node_module
Loading…
Cancel
Save