Zelleg 5 years ago
parent
commit
65aeed07cf
  1. 9
      .circleci/config.yml

9
.circleci/config.yml

@ -10,11 +10,9 @@ jobs:
- checkout # check out the code in the project directory
- run: yarn install
- save_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
key: npm-v2-dependencies-{{ checksum "yarn.lock" }}
paths:
- ~/.stack
- restore_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
- node_module
test:
docker:
- image: cimg/node:14.15.0 # the primary container, where your job's commands are run
@ -22,6 +20,9 @@ jobs:
username: mydockerhub-user
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
steps:
- checkout
- restore_cache:
key: npm-v2-dependencies-{{ checksum "yarn.lock" }}
- run:
name: Lint && format check && test ci
command: >-

Loading…
Cancel
Save