Browse Source

Updated config.yml

adding_ci
Anatole De Chauveron 5 years ago
parent
commit
2c96854d9d
  1. 16
      .circleci/config.yml

16
.circleci/config.yml

@ -72,6 +72,18 @@ jobs:
environment: environment:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
documentation_artifact:
docker:
- image: cimg/node:16.10.0
auth:
username: adechauveron
password: $DOCKER_PASSWORD
steps:
- checkout
- run:
name: "yarn doc build"
command: yarn doc:build
workflows: workflows:
version: 2 version: 2
build_and_test: build_and_test:
@ -83,3 +95,7 @@ workflows:
- end_to_end_tests: - end_to_end_tests:
requires: requires:
- build - build
- documentation_artifact:
requires:
- end_to_end_tests
- lint
Loading…
Cancel
Save