mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
* Upgrade dependencies - There was a security vuln with mocha, so upgraded mocha. - Upgraded versions of node we're going to check in travis - Switched to yarn from npm - Removed --no-exit as that's standard mocha behavior now * Enable postgres on newer version of travis
15 lines
216 B
YAML
15 lines
216 B
YAML
language: node_js
|
|
dist: trusty
|
|
node_js:
|
|
- "8"
|
|
- "10"
|
|
- "12"
|
|
env:
|
|
- PGUSER=postgres
|
|
services:
|
|
- postgresql
|
|
addons:
|
|
postgresql: "9.6"
|
|
before_script:
|
|
- psql -c 'create database travis;' -U postgres | true
|