@ -21,8 +21,10 @@ jobs:
steps:
- checkout # check out the code in the project directory
- run: yarn install
- restore_cache:
- save_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
path:
- node_module
job2:
docker:
- image: cimg/node:14.15.0 # the primary container, where your job's commands are run
@ -31,6 +33,8 @@ jobs:
password: $PSW_DOCKER # context / project UI env-var reference
- checkout
- run: yarn lint
- run: yarn format:check
# job3: