From 09351192e4140cb08335171b0277175f3820081b Mon Sep 17 00:00:00 2001 From: Alexandre SOARES <72209227+AS-37@users.noreply.github.com> Date: Sat, 15 Jan 2022 16:08:09 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Fix=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 915c84e..045a3e7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,9 +33,9 @@ jobs: - image: circleci/node:lts-fermium - image: circleci/postgres:9.6.5 environment: - POSTGRES_DB: psqluer - POSTGRES_USER: psqluer - POSTGRES_PASSWORD: psqlpassword + POSTGRES_DB: $PG_DB + POSTGRES_USER: $PG_USER + POSTGRES_PASSWORD: $PG_PASS working_directory: ~/repo steps: - checkout @@ -44,7 +44,7 @@ jobs: - run: command: yarn test:e2e environment: - DATABASE_URL: postgres://psqluer:psqlpassword@localhost:5432/psqluer + DATABASE_URL: postgres://$PG_USER:$PG_PASS@localhost:5432/$PG_DB lint: docker: - auth: