Browse Source

Update config.yml

main
Tarskan 5 years ago
parent
commit
f6d406a2a4
  1. 12
      .circleci/config.yml

12
.circleci/config.yml

@ -24,9 +24,21 @@ jobs:
- restore_cache: - restore_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }} key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
job2: job2:
docker:
- image: cimg/node:14.15.0 # the primary container, where your job's commands are run
auth:
username: $AUTH_DOCKER
password: $PSW_DOCKER # context / project UI env-var reference
steps: steps:
- checkout
- run: yarn lint - run: yarn lint
- run: yarn format:check - run: yarn format:check
job3: job3:
docker:
- image: cimg/node:14.15.0 # the primary container, where your job's commands are run
auth:
username: $AUTH_DOCKER
password: $PSW_DOCKER # context / project UI env-var reference
steps: steps:
- checkout
- run: yarn test:ci - run: yarn test:ci
Loading…
Cancel
Save