diff --git a/appveyor.yml b/appveyor.yml index aa0cee3e..f55b8a4b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,3 +1,13 @@ -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 test diff --git a/package.json b/package.json index 104d4154..3da3c084 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "main": "lib/main.js", "scripts": { "pretest": "npm run lint", - "test": "lab test/* -r lcov | coveralls", + "test": "lab -r lcov | coveralls", + "test-only": "lab", "lint": "standard", "postlint": "npm run lint-md", "lint-md": "standard-markdown"