Skip to content

Commit c95a650

Browse files
authored
Upgrade dependencies (#59)
* 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
1 parent 7d27bd2 commit c95a650

File tree

5 files changed

+487
-2064
lines changed

5 files changed

+487
-2064
lines changed

Diff for: .travis.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
language: node_js
2+
dist: trusty
23
node_js:
3-
- "4"
4-
- "6"
54
- "8"
65
- "10"
6+
- "12"
77
env:
8-
- PGUSER=postgres PGDATABASE=postgres
8+
- PGUSER=postgres
9+
services:
10+
- postgresql
11+
addons:
12+
postgresql: "9.6"
13+
before_script:
14+
- psql -c 'create database travis;' -U postgres | true

0 commit comments

Comments
 (0)