1
0
mirror of https://github.com/bitwarden/help synced 2026-02-12 22:33:23 +00:00

appveyor.yml

This commit is contained in:
Kyle Spearrin
2019-03-22 09:34:31 -04:00
parent b7e86f5578
commit c782f8f37d

30
appveyor.yml Normal file
View File

@@ -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'))
}