diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6d4bfd..e24db1a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,13 @@ image: node:latest +services: + - postgres:latest + variables: NODE_ENV: "ci" + POSTGRES_DB: "postgres" + POSTGRES_USER: "postgres" + POSTGRES_PASSWORD: "postgres" stages: - build diff --git a/config/config.json b/config/config.json index 08a7382..a8beb41 100644 --- a/config/config.json +++ b/config/config.json @@ -9,7 +9,7 @@ }, "ci": { "username": "postgres", - "password": "", + "password": "postgres", "database": "postgres", "host": "postgres", "dialect": "postgres",