forked from sogebot/sogeBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (34 loc) · 850 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
language: node_js
before_install:
- npm install -g mocha standard
jobs:
include:
- stage: Test
node_js: "9"
script: npm run standard
- stage: NEDB
node_js: "8"
before_script:
- npm run test:config:nedb
- cat config.json
script: travis_retry npm run test
- stage: NEDB
node_js: "9"
before_script:
- npm run test:config:nedb
- cat config.json
script: travis_retry npm run test
- stage: MONGODB
node_js: "8"
services: mongodb
before_script:
- npm run test:config:mongodb
- cat config.json
script: travis_retry npm run test
- stage: MONGODB
node_js: "9"
services: mongodb
before_script:
- npm run test:config:mongodb
- cat config.json
script: travis_retry npm run test