Browse Source

same thing

main
Zelleg 5 years ago
parent
commit
910e355b30
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -16,6 +16,11 @@ jobs:
- restore_cache: - restore_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }} key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
test: test:
docker:
- image: cimg/node:14.15.0 # the primary container, where your job's commands are run
auth:
username: mydockerhub-user
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
steps: steps:
- run: - run:
name: Lint && format check && test ci name: Lint && format check && test ci
@ -29,3 +34,4 @@ workflows:
jobs: jobs:
- build - build
- test - test
Loading…
Cancel
Save