forked from newrelic/node-newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (48 loc) · 816 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
env:
- SUITE=smoke
- SUITE=unit
- SUITE=integration
- SUITE=lint
- SUITE=security
- SUITE=versioned
matrix:
exclude:
- node_js: "6"
env: SUITE=security
- node_js: "6"
env: SUITE=lint
- node_js: "7"
env: SUITE=security
- node_js: "7"
env: SUITE=lint
- node_js: "8"
env: SUITE=security
- node_js: "8"
env: SUITE=lint
- node_js: "9"
env: SUITE=security
- node_js: "9"
env: SUITE=lint
addons:
postgresql: "9.3"
services:
- memcached
- mysql
- redis
- cassandra
- postgresql
- rabbitmq
before_install:
- ./bin/travis-setup.sh
install: if [ "$SUITE" != "smoke" ]; then npm ci; fi
cache:
directories:
- "$HOME/.npm"
script: npm run $SUITE