Browse Source

Updated config.yml

main
HenriBoulnois 5 years ago
parent
commit
a09663b21a
  1. 13
      .circleci/config.yml

13
.circleci/config.yml

@ -1,6 +1,6 @@
version: 2.1 version: 2.1
jobs: jobs:
build:
yarninstall:
machine: machine:
image: ubuntu-2004:202010-01 image: ubuntu-2004:202010-01
steps: steps:
@ -14,3 +14,14 @@ jobs:
paths: paths:
- "node_module" - "node_module"
key: npm-v1-dependencies-{{ checksum "yarn.lock" }} key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
yarnlint:
machine:
image: ubuntu-2004:202010-01
steps:
- run: yarn lint
workflows:
build:
jobs:
- yarninstall
- yarnlint
Loading…
Cancel
Save