@ -3,6 +3,12 @@ workflows:
do-some-magic:
jobs:
- build
- job2:
requires:
- job3:
version: 2.1
@ -16,4 +22,11 @@ jobs:
- checkout # check out the code in the project directory
- run: yarn install
- restore_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
job2:
steps:
- run: yarn lint
- run: yarn format:check
job3:
- run: yarn test:ci