Browse Source

config db

pull/1/merge
Gautier couture 6 years ago
parent
commit
bc4da4a48c
  1. 8
      .circleci/config.yml

8
.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:

Loading…
Cancel
Save