From 30f623f8481976d731f3339c74e5a4146b0f2b10 Mon Sep 17 00:00:00 2001 From: Morgan <47953421+MorganLmd@users.noreply.github.com> Date: Mon, 2 Nov 2020 16:12:00 +0100 Subject: [PATCH] fix indentation --- .circleci/config.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ad8efc8..099f8f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -52,16 +52,18 @@ jobs: database1: docker: - image: "circleci/node:12" + environment: + DATABASE_URL: postgres://psqluer:psqlpassword@localhost:5432/psdb + JWT_SECRET: some string you want + API_PORT: 3000 + API_HOST: localhost + API_PROTOCOL: http + - image: "circleci/postgres:9.6.2-alpine" - environment: - DATABASE_URL: postgres://psqluer:psqlpassword@localhost:5432/psdb - JWT_SECRET: some string you want - API_PORT: 3000 - API_HOST: localhost - API_PROTOCOL: http - POSTGRES_USER: psqluer - POSTGRES_PASSWORD: psqlpassword - POSTGRES_DB: psdb + environment: + POSTGRES_USER: psqluer + POSTGRES_PASSWORD: psqlpassword + POSTGRES_DB: psdb steps: - checkout @@ -70,7 +72,7 @@ jobs: command: "yarn test:e2e" name: "test end 2 end db postgres" - save_cache_cmd - + workflows: version: 2