From 7a1f99dffa7725dbc779aeb77c2d6e25924db538 Mon Sep 17 00:00:00 2001 From: Zelleg Date: Wed, 13 Oct 2021 20:24:09 +0200 Subject: [PATCH] update --- .circleci/config.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 13bfa7f..882efd0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -56,7 +56,18 @@ jobs: environment: DATABASE_URL: postgres://postgres:postgres@localhost:5432/psdb command: yarn test:e2e - + doc: + 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: + - checkout + - restore_cache: + key: npm-v4-dependencies-{{ checksum "yarn.lock" }} + - run: + name: yarn doc:build workflows: version: 2 build_and_test: