Skip to content

Commit e3d19df

Browse files
committed
Update ci configs
1 parent d117574 commit e3d19df

File tree

3 files changed

+29
-23
lines changed

3 files changed

+29
-23
lines changed

Diff for: .travis.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
sudo: false
2+
23
language: node_js
4+
35
node_js:
4-
- "0.10"
5-
- "0.12"
66
- "4"
7-
- "5"
87
- "6"
9-
- "7"
108
- "8"
11-
before_install:
12-
- if [[ `npm -v` =~ ^[1-2] ]]; then npm i -g npm@3; fi
13-
before_script:
14-
- npm uninstall grunt # https://github.com/npm/npm/issues/3958
9+
- "9"
10+
1511
matrix:
1612
fast_finish: true
13+
14+
cache:
15+
directories:
16+
- node_modules

Diff for: LICENSE-MIT

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016 "Cowboy" Ben Alman, contributors
1+
Copyright (c) 2018 "Cowboy" Ben Alman, contributors
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation
@@ -19,4 +19,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1919
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2020
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2121
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22-
OTHER DEALINGS IN THE SOFTWARE.
22+
OTHER DEALINGS IN THE SOFTWARE.

Diff for: appveyor.yml

+19-13
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,37 @@
1-
# Fix line endings on Windows
2-
init:
3-
- git config --global core.autocrlf true
1+
clone_depth: 10
2+
3+
version: "{build}"
4+
45
# What combinations to test
56
environment:
67
matrix:
7-
- nodejs_version: "0.10"
8-
- nodejs_version: "0.12"
98
- nodejs_version: "4"
10-
- nodejs_version: "5"
9+
platform: x64
10+
- nodejs_version: "4"
11+
platform: x86
1112
- nodejs_version: "6"
12-
- nodejs_version: "7"
13+
platform: x86
1314
- nodejs_version: "8"
14-
platform:
15-
- x86
16-
- x64
15+
platform: x86
16+
- nodejs_version: "9"
17+
platform: x86
18+
1719
install:
18-
- ps: Install-Product node $env:nodejs_version
20+
- ps: Install-Product node $env:nodejs_version $env:platform
1921
- npm install
22+
2023
test_script:
21-
# Output useful info for debugging.
24+
# Output useful info for debugging
2225
- node --version && npm --version
2326
# We test multiple Windows shells because of prior stdout buffering issues
2427
# filed against Grunt. https://github.com/joyent/node/issues/3584
2528
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
2629
- cmd: npm test
30+
2731
build: off
32+
2833
matrix:
2934
fast_finish: true
35+
3036
cache:
31-
- node_modules -> package.json # local npm modules
37+
- node_modules -> package.json

0 commit comments

Comments
 (0)