Skip to content

Commit 3828d1d

Browse files
committed
Build: Improve AppVeyor & Travis config
1 parent ec29169 commit 3828d1d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
sudo: false
22
language: node_js
33
node_js:
4+
- "8"
45
- "6"
56
- "4"
67
- "0.12"

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ environment:
88
- nodejs_version: "0.12"
99
- nodejs_version: "4"
1010
- nodejs_version: "6"
11+
- nodejs_version: "8"
1112

1213
install:
13-
- npm -g install npm@2
14-
- set PATH=%APPDATA%\npm;%PATH%
14+
- npm install -g npm@^3
1515
- ps: Install-Product node $env:nodejs_version
1616
- npm install
1717

1818
test_script:
1919
- node --version
2020
- npm --version
21-
- npm test
21+
- cmd: npm test
2222

2323
build: off
2424

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"lint": "eslint . && jscs index.js bin/ lib/ test/",
2727
"prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
2828
"pretest": "npm run lint",
29-
"test": "mocha --async-only --timeout 3000 test/lib test",
29+
"test": "mocha --async-only --timeout 5000 test/lib test",
3030
"cover": "nyc --reporter=lcov --reporter=text-summary npm test",
3131
"coveralls": "nyc --reporter=text-lcov npm test | coveralls",
3232
"changelog": "github-changes -o gulpjs -r gulp-cli -b master -f ./CHANGELOG.md --order-semver --use-commit-body"

0 commit comments

Comments
 (0)