NicolasLepinette
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
4 deletions
-
.circleci/config.yml
|
|
@ -1,10 +1,8 @@ |
|
|
|
|
|
workflows: |
|
|
jobs: |
|
|
jobs: |
|
|
build: |
|
|
build: |
|
|
docker: |
|
|
docker: |
|
|
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run |
|
|
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run |
|
|
auth: |
|
|
|
|
|
username: mydockerhub-user |
|
|
|
|
|
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference |
|
|
|
|
|
steps: |
|
|
steps: |
|
|
- checkout |
|
|
- checkout |
|
|
- run: yarn global add node-gyp |
|
|
- run: yarn global add node-gyp |
|
|
@ -13,6 +11,6 @@ jobs: |
|
|
- run: yarn format:check |
|
|
- run: yarn format:check |
|
|
- run: yarn test:ci |
|
|
- run: yarn test:ci |
|
|
- save_cache: |
|
|
- save_cache: |
|
|
key: yarn-packages-{{ checksum "yarn.lcok" }} |
|
|
|
|
|
|
|
|
key: npm-v1-dependencies-{{ checksum "yarn.lock" }} |
|
|
paths: |
|
|
paths: |
|
|
- ./node_modules |
|
|
- ./node_modules |