From 4665a1c01132cb1206d86cab9ef2596db053f06b Mon Sep 17 00:00:00 2001 From: sipe-daniel Date: Thu, 5 Nov 2020 18:30:52 +0100 Subject: [PATCH] fix(config.yml):Unable to parse YAML I resolved these issues: mapping values are not allowed here in 'string', line 57, column 28: environment: --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7076330..02920f8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -54,14 +54,14 @@ jobs: e2e-test: docker: - image: cimg/node:12.18 - environment: + environment: DATABASE_URL: "postgres://jordan:mot_de_passe@localhost:5432/psdb" API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http JWT_SECRET: mot_de_passe - image: circleci/postgres:9.6.2-alpine - environment: + environment: POSTGRES_USER: jordan POSTGRES_DB: psdb POSTGRES_PASSWORD: mot_de_passe