diff --git a/.circleci/config.yml b/.circleci/config.yml index 8d39a94..f3902bd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,6 +35,7 @@ jobs: environment: POSTGRES_USER: e2e POSTGRES_DB: psdb + POSTGRES_PASSWORD: password steps: - checkout - restore_cache: @@ -42,7 +43,7 @@ jobs: - run: command: yarn test:e2e environment: - DATABASE_URL: postgres://$POSTGRES_USER@localhost:5432/$POSTGRES_DB + DATABASE_URL: postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@localhost:5432/$POSTGRES_DB API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http