Browse Source

fix(config.yml): ERROR IN CONFIG FILE

schema violations found
test
sipe-daniel 6 years ago
parent
commit
8a0e4b485d
  1. 30
      .circleci/config.yml

30
.circleci/config.yml

@ -4,12 +4,6 @@ workflows:
build_and_test: build_and_test:
jobs: jobs:
- build - build
- lint:
requires:
- build
- test:
requires:
- build
jobs: jobs:
build: build:
docker: docker:
@ -30,27 +24,3 @@ jobs:
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
test:
docker:
- image: cimg/node:12.18
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
key:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run:
name: "Unit Test"
command: yarn test:ci
Loading…
Cancel
Save