From 0eb57c1a60cd305b292f0deadd28e43524c2e9f7 Mon Sep 17 00:00:00 2001 From: Julien Dudek Date: Mon, 2 Nov 2020 15:27:53 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f7fb1fd..dac0647 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -52,10 +52,11 @@ jobs: - ./node_modules db: docker: - - image: "circleci/postgres:alpine" + - image: "circleci/postgres:9.6.2-alpine" environment: - PG_USER: circleci-demo-go - PG_DB: circle_test + PG_USER: julien_dudek + PG_DB: testdb + PG_PASSWORD: unpass steps: - checkout @@ -76,8 +77,8 @@ jobs: - run: command: yarn test:e2e environment: - DATABASE_URL: postgres://$PG_USER@localhost:5432/$PG_DB - JWT_SECRET: yeet + DATABASE_URL: postgres://$PG_USER:$PG_PASSWORD@localhost:5432/$PG_DB + JWT_SECRET: m1iii API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http