Spokequenouille
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
.circleci/config.yml
|
|
@ -8,6 +8,12 @@ jobs: |
|
|
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference |
|
|
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference |
|
|
steps: |
|
|
steps: |
|
|
- checkout # check out the code in the project directory |
|
|
- checkout # check out the code in the project directory |
|
|
|
|
|
- restore_cache: |
|
|
|
|
|
key: yarn-packages-{{checksum "yarn.lock"}} |
|
|
- run: |
|
|
- run: |
|
|
name: install node |
|
|
name: install node |
|
|
command: yarn global add node-gyp && yarn install |
|
|
command: yarn global add node-gyp && yarn install |
|
|
|
|
|
- save_cache: |
|
|
|
|
|
key: yarn-packages-{{checksum "yarn.lock"}} |
|
|
|
|
|
paths: |
|
|
|
|
|
- ./node_module |