diff --git a/.circleci/config.yml b/.circleci/config.yml index fa9e809..e80c007 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,6 +4,13 @@ jobs: build: docker: - image: cimg/node:14.10.1 + - image: circleci/postgres:9.6.2-alpine + environment: + DATABASE_URL: postgres://psqluer:psqlpassword@localhost:5432/psdb + JWT_SECRET: coucou + API_PORT: 3000 + API_HOST: localhost + API_PROTOCOL: http steps: - checkout - restore_cache: @@ -13,6 +20,7 @@ jobs: - run: yarn lint - run: yarn format:check - run: yarn test:ci + - run: yarn test:e2e - save_cache: key: yarn-packages-{{ checksum "yarn.lock" }} paths: