Browse Source

3 jobs

main
MTLantoine 6 years ago
parent
commit
bd2b1b3614
  1. 13
      .circleci/config.yml

13
.circleci/config.yml

@ -58,6 +58,16 @@ jobs:
- npm-v1-dependencies-{{ checksum "yarn.lock" }} - npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run: yarn lint && yarn format:check - run: yarn lint && yarn format:check
test:
docker: *docker
steps:
- checkout
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run: yarn test:ci
workflows: workflows:
version: 2 version: 2
build-and-test: build-and-test:
@ -66,3 +76,6 @@ workflows:
- lint: - lint:
requires: requires:
- build - build
- test:
requires:
- build
Loading…
Cancel
Save