Skip to content

Instantly share code, notes, and snippets.

@MrHassanMurtaza
Forked from statico/circleci.yml
Created July 24, 2019 11:42
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 MrHassanMurtaza/f62bb2b48bd285400f500bd886304566 to your computer and use it in GitHub Desktop.
Save MrHassanMurtaza/f62bb2b48bd285400f500bd886304566 to your computer and use it in GitHub Desktop.
Node.js 10 + PostgreSQL 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: yarn install
- save_cache:
paths:
- node_modules
key: v1-deps-{{ checksum "package.json" }}
- run: yarn lint
- run: yarn test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment