Browse Source

👷 Add Lint step

Add lint and format check step in ci
pull/1/head
Anatole-DC 4 years ago
parent
commit
f273bb5c5a
  1. 14
      .circleci/config.yml

14
.circleci/config.yml

@ -16,8 +16,20 @@ jobs:
- node_modules
key: dependencies-{{ checksum "package.json" }}-v1
lint:
<<: *shared-config
steps:
- checkout
- restore_cache:
key: dependencies-{{ checksum "package.json" }}-v2
- run: yarn lint
- run: yarn format:check
workflows:
version: 2
build-test-and-lint:
jobs:
- build
- build
- lint:
requires :
- build
Loading…
Cancel
Save