From 2c96854d9db09110bfa86e547d16d62d203a396e Mon Sep 17 00:00:00 2001 From: Anatole De Chauveron <54862351+Anatole-DC@users.noreply.github.com> Date: Mon, 11 Oct 2021 11:48:55 +0200 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index eccc8c0..55c5b6f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,6 +72,18 @@ jobs: environment: DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres + documentation_artifact: + docker: + - image: cimg/node:16.10.0 + auth: + username: adechauveron + password: $DOCKER_PASSWORD + steps: + - checkout + - run: + name: "yarn doc build" + command: yarn doc:build + workflows: version: 2 build_and_test: @@ -83,3 +95,7 @@ workflows: - end_to_end_tests: requires: - build + - documentation_artifact: + requires: + - end_to_end_tests + - lint