|
|
@ -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 |