Browse Source

doc

circleci-project-setup
Louis Dutoit 6 years ago
parent
commit
133e9c2a05
  1. 15
      .circleci/config.yml

15
.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
- build
- documentation:
requires:
- build
Loading…
Cancel
Save