This commit is contained in:
dbroqua 2020-02-11 19:49:23 +01:00
parent fae42cb001
commit 0e8101c9e4
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,13 @@
image: node:latest image: node:latest
services:
- postgres:latest
variables: variables:
NODE_ENV: "ci" NODE_ENV: "ci"
POSTGRES_DB: "postgres"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
stages: stages:
- build - build

View File

@ -9,7 +9,7 @@
}, },
"ci": { "ci": {
"username": "postgres", "username": "postgres",
"password": "", "password": "postgres",
"database": "postgres", "database": "postgres",
"host": "postgres", "host": "postgres",
"dialect": "postgres", "dialect": "postgres",