@ -13,6 +13,23 @@ jobs:
paths:
- ./node_modules
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
lint:
docker: *docker
steps:
- checkout
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run: yarn lint && yarn format:check
test:
- run: yarn test:ci
workflows:
@ -20,3 +37,9 @@ workflows:
build_wokflow:
jobs:
- build
- lint:
requires:
- test: