Browse Source

yarn lint

pull/3/merge
Gianni GIUDICE 6 years ago
parent
commit
964eed6de9
  1. 4
      .circleci/config.yml

4
.circleci/config.yml

@ -8,9 +8,11 @@ jobs:
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
steps:
- checkout # check out the code in the project directory
- run: yarn global add node-gyp && yarn install
- restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install
- run: yarn lint && yarn format:check
- run: yarn test:ci
- save_cache:
key: yarn-packages-{{ checksum "yarn.lcok" }}
paths:

Loading…
Cancel
Save