From 27fcae6228f14971c3f16330f608bd46cfccf404 Mon Sep 17 00:00:00 2001 From: Neel Coffin Date: Mon, 2 Nov 2020 15:47:28 +0100 Subject: [PATCH] fix ident --- .circleci/config.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ca76ade..9287d8d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -42,20 +42,21 @@ jobs: key: yarn-packages-v2{{ checksum "yarn.lock" }} paths: - ./node_modules - test_e2e: - docker: - - image: postgres:9.6-jessie - environment: - POSTGRES_USER: psqluser - POSTGRES_DB: psdb - steps: - - run: - command: yarn test:e2e - environment: - DATABASE_URL: postgres://psqluser@localhost:5432/psdb - API_PORT: 3000 - API_HOST: localhost - API_PROTOCOL: http + database: + docker: + - image: postgres:9.6-jessie + environment: + POSTGRES_USER: psqluser + POSTGRES_DB: psdb + POSTGRES_PASSWORD: psqlpwd + steps: + - run: + command: yarn test:e2e + environment: + DATABASE_URL: postgres://psqluser@localhost:5432/psdb + API_PORT: 3000 + API_HOST: localhost + API_PROTOCOL: http workflows: build_and_test: jobs: