Browse Source

fix ident

pull/2/head
Neel Coffin 6 years ago
parent
commit
27fcae6228
  1. 29
      .circleci/config.yml

29
.circleci/config.yml

@ -42,20 +42,21 @@ jobs:
key: yarn-packages-v2{{ checksum "yarn.lock" }} key: yarn-packages-v2{{ checksum "yarn.lock" }}
paths: paths:
- ./node_modules - ./node_modules
test_e2e:
docker:
- image: postgres:9.6-jessie
environment:
POSTGRES_USER: psqluser
POSTGRES_DB: psdb
steps:
- run:
command: yarn test:e2e
environment:
DATABASE_URL: postgres://psqluser@localhost:5432/psdb
API_PORT: 3000
API_HOST: localhost
API_PROTOCOL: http
database:
docker:
- image: postgres:9.6-jessie
environment:
POSTGRES_USER: psqluser
POSTGRES_DB: psdb
POSTGRES_PASSWORD: psqlpwd
steps:
- run:
command: yarn test:e2e
environment:
DATABASE_URL: postgres://psqluser@localhost:5432/psdb
API_PORT: 3000
API_HOST: localhost
API_PROTOCOL: http
workflows: workflows:
build_and_test: build_and_test:
jobs: jobs:

Loading…
Cancel
Save