Created
January 21, 2019 21:25
-
-
Save statico/842c7fc49027e9f2a95ad37fb7a24056 to your computer and use it in GitHub Desktop.
Node.js 10 + PostgreSQL CircleCI config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
workflows: | |
version: 2 | |
build: | |
jobs: | |
- test | |
jobs: | |
test: | |
docker: | |
- image: circleci/node:10 | |
- image: circleci/postgres:10 | |
environment: | |
POSTGRES_USER: circleci | |
POSTGRES_DB: circleci | |
environment: | |
NODE_ENV: test | |
POSTGRES_USER: circleci | |
POSTGRES_DB: circleci | |
JWT_SECRET: sekrit | |
steps: | |
- run: | |
name: Install ltree extension for Postgres | |
command: | | |
sudo apt-get update | |
sudo apt-get install postgresql-client | |
dockerize -wait tcp://localhost:5432 -timeout 1m | |
psql -U circleci -h localhost -p 5432 -c 'create extension ltree' | |
- checkout | |
- restore_cache: | |
key: v1-deps-{{ checksum "package.json" }} | |
- run: yarn install | |
- save_cache: | |
paths: | |
- node_modules | |
key: v1-deps-{{ checksum "package.json" }} | |
- run: yarn lint | |
- run: yarn test |
Sorry, not sure. Maybe you're missing an environment variable to Postgres. See the Postgres Docker page for more info.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I like this great post, unfortunately, I am getting this error @statico
What should I do?