diff --git a/appveyor.yml b/appveyor.yml index fff6504..cda15e8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,27 +1,30 @@ -language: node_js +# http://www.appveyor.com/docs/appveyor-yml -node_js: - - "13.5.0" +version: "{build}" -cache: npm - -os: - - linux - - osx - -env: - matrix: - - NODE_VERSION="13" +platform: + - x64 + - x86 matrix: fast_finish: true install: + # Build + - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild 14.2.0) $env:platform - npm install - - npm link -script: +test_script: + - node --version + - npm --version - npm test -after_success: - - npm run calls +cache: + # local npm modules + - 'node_modules -> package.json' + # npm cache + - '%APPDATA%\npm-cache' + +build: off + +deploy: off