diff --git a/appveyor.yml b/appveyor.yml index 6d27c001..b468e1e9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,14 @@ -version: 1.0.{build} environment: - - nodejs_version: 7 -build_script: -- ps: >- - Install-Product node $env:nodejs_version - npm install --loglevel=error + nodejs_version: "7" +install: + - ps: Install-Product node $env:nodejs_version + - npm install --loglevel=error # no warnings test_script: -- cmd: >- - npm run build \ No newline at end of file + # Output useful info for debugging. + - node --version + - npm --version + # run tests + - npm run build + +# Don't actually build. +build: off \ No newline at end of file