Skip to content

Commit

Permalink
Merge 2b6ff90 into 472db2e
Browse files Browse the repository at this point in the history
  • Loading branch information
zenflow committed Feb 26, 2018
2 parents 472db2e + 2b6ff90 commit 36f19ba
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ node_js:
- 6
- 8
- 9

script:
- npm run lint
- npm run coverage
17 changes: 14 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
version: 4.0.{build}
build:
verbosity: minimal
version: "{build}"
build: off
environment:
matrix:
- nodejs_version: "4"
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "9"
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
- npm run lint
- npm run test
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
"main": "lib/main.js",
"scripts": {
"pretest": "npm run lint",
"test": "lab test/* -r lcov | coveralls",
"test": "lab",
"lint": "standard",
"postlint": "npm run lint-md",
"lint-md": "standard-markdown"
"lint-md": "standard-markdown",
"coverage": "lab -r lcov | coveralls"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 36f19ba

Please sign in to comment.