Skip to content

Commit ceb97fe

Browse files
committed
update Travis config and add Appveyor
1 parent 0acd0c0 commit ceb97fe

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ foreman-*.tgz
55
coverage/
66
checkstyle.xml
77
tests.tap
8+
.travis.yml
9+
appveyor.yml

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: node_js
22
node_js:
3+
- "6"
4+
- "5"
35
- "4"
46
- "0.12"
57
- "0.10"

appveyor.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: '6'
4+
- nodejs_version: '5'
5+
- nodejs_version: '4'
6+
- nodejs_version: '0.12'
7+
- nodejs_version: '0.10'
8+
install:
9+
- ps: Install-Product node $env:nodejs_version
10+
- set CI=true
11+
- npm -g install npm@latest
12+
- set PATH=%APPDATA%\npm;%PATH%
13+
- npm install
14+
matrix:
15+
fast_finish: true
16+
build: off
17+
version: '{build}'
18+
shallow_clone: true
19+
clone_depth: 1
20+
test_script:
21+
- npm test -- -Rclassic --no-coverage --timeout=3600

0 commit comments

Comments
 (0)