Browse Source

3 jobs

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

13
.circleci/config.yml

@ -58,11 +58,24 @@ jobs:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- 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:
version: 2
build-and-test:
jobs:
- build
- lint:
requires:
- build
- test:
requires:
- build
Loading…
Cancel
Save