From e6484f711828bf48e6d728da1f1d1ed15fc8bca1 Mon Sep 17 00:00:00 2001 From: verzelea Date: Tue, 3 Nov 2020 11:36:23 +0100 Subject: [PATCH] Fix: environment --- .circleci/config.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 439962a..e21bf65 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,17 +38,17 @@ jobs: e2e: docker: - image: cimg/node:12.18 - environment: - DATABASE_URL: "postgres://e2e:test@localhost:5432/psdb" - API_PORT: 3000 - API_HOST: localhost - API_PROTOCOL: http - JWT_SECRET: wazaa - - image: circleci/postgres:9.6.2-alpine - environment: - POSTGRES_USER: e2e - POSTGRES_DB: psdb - POSTGRES_PASSWORD: test + environment: + DATABASE_URL: "postgres://e2e:test@localhost:5432/psdb" + API_PORT: 3000 + API_HOST: localhost + API_PROTOCOL: http + JWT_SECRET: wazaa + - image: circleci/postgres:9.6.2-alpine + environment: + POSTGRES_USER: e2e + POSTGRES_DB: psdb + POSTGRES_PASSWORD: test steps: - checkout