From 133e9c2a05006621bf5a5c603b6b0378073aa51e Mon Sep 17 00:00:00 2001 From: Louis Dutoit Date: Wed, 4 Nov 2020 18:06:16 +0100 Subject: [PATCH] doc --- .circleci/config.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f673b74..615008b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -59,6 +59,16 @@ jobs: - run: yarn test:e2e + documentation: + docker: *shared_docker + steps: + - checkout # check out the code in the project director + - restore_cache : + keys : + - npm-v1-dependencies-{{ checksum "yarn.lock" }} + + - run: yarn doc:build + workflows: version: 2 build_test: @@ -72,4 +82,7 @@ workflows: - build - e2etest: requires: - - build \ No newline at end of file + - build + - documentation: + requires: + - build \ No newline at end of file