aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-08-22 06:06:21 +0800
committerFabio Berger <me@fabioberger.com>2018-08-22 06:06:21 +0800
commitfe43f84abdeb2ed6805d3879f531fbc4f46c4fec (patch)
tree8b33e9838b9e93e48ba93de363b24631ee5291c3 /.circleci
parent6b838c034a3a489ae0b962af820270eafc52c377 (diff)
downloaddexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.gz
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.bz2
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.lz
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.xz
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.zst
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.zip
Use bash for loop for generating docs for each package, revert changes to script
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index ae8519a56..844eb3b98 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -66,6 +66,15 @@ jobs:
keys:
- repo-{{ .Environment.CIRCLE_SHA1 }}
- run: yarn test:publish:circleci
+ test-doc-generation:
+ docker:
+ - image: circleci/node:9
+ working_directory: ~/repo
+ steps:
+ - restore_cache:
+ keys:
+ - repo-{{ .Environment.CIRCLE_SHA1 }}
+ - run: yarn test:generate_docs:circleci
test-rest:
docker:
- image: circleci/node:9
@@ -237,6 +246,9 @@ workflows:
- test-publish:
requires:
- build
+ - test-doc-generation:
+ requires:
+ - build
- submit-coverage:
requires:
- test-rest \ No newline at end of file