Skip to content

Instantly share code, notes, and snippets.

@niomwungeri-fabrice
Created May 20, 2019 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niomwungeri-fabrice/3d354caf281fc76f3bf67ecf00fe8b0f to your computer and use it in GitHub Desktop.
Save niomwungeri-fabrice/3d354caf281fc76f3bf67ecf00fe8b0f to your computer and use it in GitHub Desktop.
Node.js 10 + PostgreSQL + Sequelize CircleCI config
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: npm install
- save_cache:
paths:
- node_modules
key: v1-deps-{{ checksum "package.json" }}
- run: npm run migrate
- run: npm test
@niomwungeri-fabrice
Copy link
Author

File edited from statico

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment