Browse Source

yml: add yarn command

pull/2/head
Neel Coffin 6 years ago
parent
commit
db95ef5fd1
  1. 13
      .circleci/config.yml

13
.circleci/config.yml

@ -1,6 +1,6 @@
version: 2.1
jobs:
build:
cache: &shared-config
docker:
- image: cimg/node:14.10.1
steps:
@ -15,3 +15,14 @@ jobs:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
lint:
<<: *shared-config
steps:
- checkout
- run: yarn lint && yarn format:check
unit-test:
<<: *shared-config
steps:
- checkout
- run: yarn test:ci
Loading…
Cancel
Save