From 00d9740a58b9d190d9869b98e29f2bd5f69adc18 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Thu, 15 Nov 2018 17:36:32 +0100 Subject: [PATCH] Store rendering artifacts immediately after run tests --- .circleci/config.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2d229cee27..aa054edaab 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,7 @@ jobs: - v1-dependencies-{{ checksum "package.json" }} - v1-dependencies- - - run: + - run: name: Install Dependencies command: npm install @@ -22,19 +22,19 @@ jobs: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - - - run: + + - run: name: Run Tests command: npm test - - run: + - store_artifacts: + path: rendering/cases/ + destination: rendering + + - run: name: Build Examples command: npm run build-examples - store_artifacts: path: build/examples destination: examples - - - store_artifacts: - path: rendering/cases/ - destination: rendering