From b0182eb06e5aded9cbab720f147f7041e40297f0 Mon Sep 17 00:00:00 2001 From: Galimede Date: Mon, 2 Nov 2020 16:35:48 +0100 Subject: [PATCH] fix image & pwd --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9138c60..05f15b3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,11 +30,12 @@ jobs: - run : yarn test:ci test_e2e: docker: + - image: cimg/node:14.10.1 - image: circleci/postgres environment: POSTGRES_USER: e2e POSTGRES_DB: psdb - - image: cimg/node:14.10.1 + POSTGRES_PASSWORD: test steps: - checkout - restore_cache: @@ -46,7 +47,7 @@ jobs: name: Launching e2e test command: yarn test:e2e environment: - DATABASE_URL: "postgres://e2e@localhost:5432/psdb" + DATABASE_URL: "postgres://e2e:test@localhost:5432/psdb" API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http