Browse Source

Updated config.yml

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

16
.circleci/config.yml

@ -46,6 +46,19 @@ jobs:
name: "yarn test" name: "yarn test"
command: yarn test command: yarn test
postgres:
docker:
- image: circleci/postgres:9.6.2-alpine
auth:
username: adechauveron
password: $DOCKER_PASSWORD
environment:
POSTGRES_USER: postgres
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
steps:
- checkout
workflows: workflows:
version: 2 version: 2
build_and_test: build_and_test:
@ -54,3 +67,6 @@ workflows:
- lint: - lint:
requires: requires:
- build - build
- postgres:
requires:
- build
Loading…
Cancel
Save