Created
May 20, 2019 13:57
-
-
Save niomwungeri-fabrice/3d354caf281fc76f3bf67ecf00fe8b0f to your computer and use it in GitHub Desktop.
Node.js 10 + PostgreSQL + Sequelize CircleCI config
This file contains hidden or 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: npm install | |
- save_cache: | |
paths: | |
- node_modules | |
key: v1-deps-{{ checksum "package.json" }} | |
- run: npm run migrate | |
- run: npm test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
File edited from statico