File tree 3 files changed +25
-0
lines changed
3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ foreman-*.tgz
5
5
coverage /
6
6
checkstyle.xml
7
7
tests.tap
8
+ .travis.yml
9
+ appveyor.yml
Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
+ - " 6"
4
+ - " 5"
3
5
- " 4"
4
6
- " 0.12"
5
7
- " 0.10"
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments