Skip to content

Commit 0da63fc

Browse files
committed
Updated travis and appveyor configs.
1 parent cc281ef commit 0da63fc

File tree

2 files changed

+18
-20
lines changed

2 files changed

+18
-20
lines changed

.travis.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
language: node_js
22
node_js:
3-
- "4"
4-
- "6"
5-
- "7"
6-
- "8"
3+
- '8'
4+
- '10'
5+
- '11'
76
before_install:
8-
- if [[ `npm -v` != 5* ]]; then npm i -g npm@latest; fi
7+
- if [[ `npm -v` != 6* ]]; then npm i -g npm@6; fi
98
after_success:
10-
- npm run coverage
11-
- npm run test:flags
12-
- npm run test:docs
13-
- bash <(curl -s https://codecov.io/bash)
9+
- npm run coverage
10+
- npm run test:flags
11+
- npm run test:docs
12+
- bash <(curl -s https://codecov.io/bash)
1413
sudo: false

appveyor.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
environment:
2-
matrix:
3-
- nodejs_version: "4"
4-
- nodejs_version: "6"
5-
- nodejs_version: "8"
6-
- nodejs_version: "9"
2+
matrix:
3+
- nodejs_version: '8'
4+
- nodejs_version: '10'
5+
- nodejs_version: '11'
76

87
install:
9-
- ps: Install-Product node $env:nodejs_version
10-
- npm i -g npm@latest
11-
- npm install
8+
- ps: Install-Product node $env:nodejs_version
9+
- npm i -g npm@latest
10+
- npm install
1211

1312
test_script:
14-
- node --version
15-
- npm --version
16-
- npm test
13+
- node --version
14+
- npm --version
15+
- npm test
1716

1817
build: off

0 commit comments

Comments
 (0)