-
-
Save aiya44/255523d9f31e3938a0d0141f3c34ab5f to your computer and use it in GitHub Desktop.
Node.js 10 + PostgreSQL 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: 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