From 818fd0b27541652277715f500b926d97c5de4784 Mon Sep 17 00:00:00 2001 From: "denisdalmeida04@gmail.com" Date: Tue, 3 Nov 2020 16:54:18 +0100 Subject: [PATCH] denisjunior update --- .circleci/config.yml | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a9ce671..61c986e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,16 +1,14 @@ jobs: hello: docker: - - - image: "circleci/node:12" + - image: "circleci/node:12" steps: - checkout - run: "echo \"hello world\"" install: docker: - - - image: "circleci/node:12" + - image: "circleci/node:12" steps: - checkout - restore_cache: @@ -23,8 +21,7 @@ jobs: - ./node_modules lint: docker: - - - image: "circleci/node:12" + - image: "circleci/node:12" steps: - checkout - restore_cache: @@ -34,8 +31,7 @@ jobs: test: docker: - - - image: "circleci/node:12" + - image: "circleci/node:12" steps: - checkout - restore_cache: @@ -43,17 +39,15 @@ jobs: - run : yarn test:ci database: docker: - - - image: "circleci/node:12" - environnement: + - image: "circleci/node:12" + environment: DATABASE_URL: postgres://psqluer:psqlpassword@localhost:5432/psdb JWT_SECRET: some string yo want API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http - - - image: "circleci/postgres:9.6.2-alpine" - environnement: + - image: "circleci/postgres:9.6.2-alpine" + environment: POSTGRES_USER: psqluser POSTGRES_PASSWORD: psqlpassword POSTGRES_DB: psdb