From 513808af534a2fab16fe4072339d5f2371743fc6 Mon Sep 17 00:00:00 2001 From: jascha Date: Mon, 31 Aug 2020 17:10:17 +0200 Subject: [PATCH] update appveyor.yml --- appveyor.yml | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) 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