Browse Source

Updated config.yml

main
HenriBoulnois 5 years ago
parent
commit
047b593420
  1. 14
      .circleci/config.yml

14
.circleci/config.yml

@ -10,13 +10,13 @@ jobs:
- checkout
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- npm-v1-dependencies
- npm-v2-dependencies-{{ checksum "yarn.lock" }}
- npm-v2-dependencies
- run: yarn install
- save_cache:
paths:
- node_modules
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
key: npm-v2-dependencies-{{ checksum "yarn.lock" }}
yarnlint:
docker:
- image: cimg/node:lts
@ -27,14 +27,14 @@ jobs:
- checkout
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- npm-v1-dependencies
- npm-v2-dependencies-{{ checksum "yarn.lock" }}
- npm-v2-dependencies
- run: yarn lint
- run: yarn format:check
- save_cache:
paths:
- node_modules
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
key: npm-v2-dependencies-{{ checksum "yarn.lock" }}
unittest:
docker:
- image: cimg/node:lts
@ -42,7 +42,7 @@ jobs:
username: henriboulnois
password: $DOCKERHUB_PASSWORD
steps:
- run: yarn test:ci
- run: yarn test
workflows:
build:

Loading…
Cancel
Save