Browse Source

Updated config.yml

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

15
.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:
@ -13,4 +13,15 @@ jobs:
- save_cache: - save_cache:
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