Browse Source

Updated config.yml

main
HenriBoulnois 5 years ago
parent
commit
cbfdaabca1
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -25,8 +25,16 @@ jobs:
password: $DOCKERHUB_PASSWORD password: $DOCKERHUB_PASSWORD
steps: steps:
- checkout - checkout
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- npm-v1-dependencies
- run: yarn lint - run: yarn lint
- run: yarn format:check - run: yarn format:check
- save_cache:
paths:
- "node_module"
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
unittest: unittest:
docker: docker:
- image: cimg/node:lts - image: cimg/node:lts

Loading…
Cancel
Save