Skip to content

Commit

Permalink
test: add node 11 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 authored Nov 30, 2018
1 parent 0650825 commit 4808fb8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node_js:
- '6'
- '8'
- '10'
- '11'
install:
- npm i npminstall && npminstall
script:
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ environment:
- nodejs_version: '6'
- nodejs_version: '8'
- nodejs_version: '10'
- nodejs_version: '11'

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"description": "Everything you need for compressing and uncompressing",
"main": "index.js",
"scripts": {
"test": "egg-bin test && tsc -p ./test/fixtures/types/tsconfig.json",
"ts-test": "tsc -p ./test/fixtures/types/tsconfig.json",
"test": "egg-bin test && npm run ts-test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
"ci": "npm run lint && npm run ts-test && npm run cov"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -64,7 +65,7 @@
"node": ">= 4.0.0"
},
"ci": {
"version": "4, 6, 8, 10",
"version": "4, 6, 8, 10, 11",
"license": {
"year": "2017",
"fullname": "node-modules and other contributors"
Expand Down

0 comments on commit 4808fb8

Please sign in to comment.