forked from APIDevTools/swagger-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
47 lines (42 loc) · 1.32 KB
/
.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
# Travis CI config
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
sudo: false
language: node_js
matrix:
include:
# Node
- node_js: 0.10
env: KARMA=false
- node_js: 0.11
env: KARMA=false
- node_js: 0.12
env: KARMA=false
- node_js: iojs
env: KARMA=false
- node_js: 4
env: KARMA=false
- node_js: 5
env: KARMA=false
# Local Browsers
- node_js: 0.12
env: KARMA_COVERAGE=true KARMA_SAUCE=false
# Sauce Labs
- node_js: 0.12
env: KARMA_SAUCE=true KARMA_COVERAGE=false
fast_finish: true
allow_failures:
- node_js: 0.12
env: KARMA_SAUCE=true KARMA_COVERAGE=false
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm update -g npm
branches:
only:
- master # only run CI on the master branch
- /^PR / # also build pull requests
after_success:
- cat coverage/*/lcov.info > coveralls.txt # concatenate all code-coverage data into a single file
- cat coveralls.txt # output the file contents (for debugging)
- ls -R1 coverage/*/lcov.info # list the files (for debugging)
- cat coveralls.txt | node_modules/coveralls/bin/coveralls.js # send code-coverage data to Coveralls