Browse Source

💚 Fix ci

main
Alexandre SOARES 4 years ago
parent
commit
b11aa3ce1f
  1. 18
      .circleci/config.yml

18
.circleci/config.yml

@ -64,15 +64,15 @@ jobs:
POSTGRES_DB: pgdb POSTGRES_DB: pgdb
POSTGRES_PASSWORD: pass POSTGRES_PASSWORD: pass
steps: steps:
- checkout
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run:
name: "yarn test"
command: yarn test:e2e
environment:
DATABASE_URL: postgres://pguser:pass@localhost:5432/pgdb
- checkout
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run:
name: "yarn test"
command: yarn test:e2e
environment:
DATABASE_URL: postgres://pguser:pass@localhost:5432/pgdb
lint: lint:
docker: docker:
- image: cimg/node:14.15.0 # the primary container, where your job's commands are run - image: cimg/node:14.15.0 # the primary container, where your job's commands are run

Loading…
Cancel
Save