Browse Source

fix(config.yml): ERROR IN CONFIG FILE

schema violations found
test
sipe-daniel 6 years ago
parent
commit
938d6a630d
  1. 16
      .circleci/config.yml

16
.circleci/config.yml

@ -4,6 +4,9 @@ workflows:
build_and_test: build_and_test:
jobs: jobs:
- build - build
- lint:
requires:
- build
jobs: jobs:
build: build:
docker: docker:
@ -23,4 +26,15 @@ jobs:
name: Save Yarn Package Cache name: Save Yarn Package Cache
key: npm-v1-dependencies-{{ checksum "yarn.lock" }} key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
paths: paths:
- ~/.cache/yarn
- ~/.cache/yarn
lint:
docker:
- image: cimg/node:12.18
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run:
name: "Lint Code"
command: yarn lint && yarn format:check
Loading…
Cancel
Save