diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-22 06:06:21 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-22 06:06:21 +0800 |
commit | fe43f84abdeb2ed6805d3879f531fbc4f46c4fec (patch) | |
tree | 8b33e9838b9e93e48ba93de363b24631ee5291c3 /.circleci/config.yml | |
parent | 6b838c034a3a489ae0b962af820270eafc52c377 (diff) | |
download | dexon-sol-tools-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar dexon-sol-tools-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.gz dexon-sol-tools-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.bz2 dexon-sol-tools-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.lz dexon-sol-tools-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.xz dexon-sol-tools-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.zst dexon-sol-tools-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.zip |
Use bash for loop for generating docs for each package, revert changes to script
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 12 |
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 |