Browse Source

Update config.yml

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

6
.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
Loading…
Cancel
Save