Browse Source

Updated config.yml

adding_ci
Anatole De Chauveron 5 years ago
parent
commit
72f6632c92
  1. 18
      .circleci/config.yml

18
.circleci/config.yml

@ -59,6 +59,20 @@ jobs:
steps:
- checkout
end_to_end_tests:
docker:
- image: cimg/node:16.10.0
auth:
username: adechauveron
password: $DOCKER_PASSWORD
steps:
- checkout
- run:
name: "yarn test"
command: yarn test:e2e
environment:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
workflows:
version: 2
build_and_test:
@ -70,3 +84,7 @@ workflows:
- postgres:
requires:
- build
- end_to_end_tests:
requires:
- lint
- postgres
Loading…
Cancel
Save