From af0d1c8b7cd7d50951858253b01b1071ed119729 Mon Sep 17 00:00:00 2001 From: Julien Dudek Date: Tue, 3 Nov 2020 16:03:06 +0100 Subject: [PATCH] test ajout doc et artifact --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4bf4d06..fc45440 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,6 +12,9 @@ workflows: - e2e: requires: - lint + - doc: + requires: + - build jobs: build: docker: @@ -73,3 +76,14 @@ jobs: key: yarn-cache{{ checksum "yarn.lock" }} paths: - ./node_modules + doc: + docker: + - image: "circleci/node:12" + steps: + - checkout + - restore_cache: + key: yarn-cache{{ checksum "yarn.lock" }} + - run: + command: yarn doc:build + - store_artifacts: + path: ./doc-server