mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
16 lines
228 B
YAML
16 lines
228 B
YAML
language: node_js
|
|
dist: trusty
|
|
sudo: false
|
|
node_js:
|
|
- "4.2"
|
|
- "6"
|
|
- "8"
|
|
env:
|
|
- PGUSER=postgres
|
|
services:
|
|
- postgresql
|
|
addons:
|
|
postgresql: "9.6"
|
|
before_script:
|
|
- psql -c 'create database travis;' -U postgres | true
|