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