From c782f8f37dd355b0f750af36ee7d98a63acd7841 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 22 Mar 2019 09:34:31 -0400 Subject: [PATCH] appveyor.yml --- appveyor.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..fc36d563 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,30 @@ +image: +- Visual Studio 2017 + +branches: + except: + - gh-pages + +init: +- ps: | + if($isWindows -and $env:DEBUG_RDP -eq "true") { + iex ((new-object net.webclient).DownloadString(` + 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) + } +- ps: Install-Product node 10 + +before_build: +- cmd: node --version +- cmd: npm --version + +build_script: +- cmd: npm install +- cmd: npm deploy:ci + +on_finish: + - ps: | + if($isWindows -and $env:DEBUG_RDP -eq "true") { + $blockRdp = $true + iex ((new-object net.webclient).DownloadString(` + 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) + }