Yield generated for 5f30da0e-0280-4d94-b5f5-0568d8ede68c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
583 B

version: 2.1
jobs:
build:
docker:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run
steps:
- checkout # check out the code in the project directory
- restore_cache:
key: yarn-packages-{{checksum "yarn.lock"}}
- run:
name: install node
command: yarn global add node-gyp && yarn install
- run: yarn lint
- run: yarn format:check
- run: yarn test:ci
- save_cache:
key: yarn-packages-{{checksum "yarn.lock"}}
paths:
- ./node_module