Browse Source

Updated config.yml

pull/1/head
Anthony Quéré 5 years ago
parent
commit
c7baa902a3
  1. 9
      .circleci/config.yml

9
.circleci/config.yml

@ -31,7 +31,8 @@ jobs:
- checkout
- restore_cache:
keys:
- npm-v1-lint-{{ checksum "src" }}
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- npm-v1-lint-{{ .BuildNum }}
- run:
name: Check files format
command: yarn format:check
@ -53,9 +54,13 @@ jobs:
password: $DOCKERHUB_PASSWORD
steps:
- checkout
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- npm-v1-lint-{{ .BuildNum }}
- run:
name: Unit Tests
command: yarn test:ci
command: yarn test
workflows:
build-workflow:

Loading…
Cancel
Save