From e732274c1d93255ac0715cd1f82443710c9e8967 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Wed, 15 Nov 2017 15:49:09 +0100 Subject: [PATCH] use yarn in appveyor --- appveyor.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 5c5c23c776a..d9471f2a8f8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,19 +3,17 @@ environment: VSCODE_BUILD_VERBOSE: true cache: - - '%APPDATA%\npm-cache' + - '%LOCALAPPDATA%\Yarn\cache' install: - - ps: Install-Product node 7.9.0 x64 - - npm install -g npm@4 --silent + - ps: Install-Product node 8.9.1 x64 build_script: - - .\scripts\npm.bat install + - yarn - .\node_modules\.bin\gulp electron - npm run compile test_script: - node --version - - npm --version - .\scripts\test.bat - .\scripts\test-integration.bat