diff --git a/.circleci/config.yml b/.circleci/config.yml index f7fb1fd..dac0647 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -52,10 +52,11 @@ jobs: - ./node_modules db: docker: - - image: "circleci/postgres:alpine" + - image: "circleci/postgres:9.6.2-alpine" environment: - PG_USER: circleci-demo-go - PG_DB: circle_test + PG_USER: julien_dudek + PG_DB: testdb + PG_PASSWORD: unpass steps: - checkout @@ -76,8 +77,8 @@ jobs: - run: command: yarn test:e2e environment: - DATABASE_URL: postgres://$PG_USER@localhost:5432/$PG_DB - JWT_SECRET: yeet + DATABASE_URL: postgres://$PG_USER:$PG_PASSWORD@localhost:5432/$PG_DB + JWT_SECRET: m1iii API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http