Skip to content

Commit

Permalink
appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Mar 22, 2019
1 parent b7e86f5 commit c782f8f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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'))
}

0 comments on commit c782f8f

Please sign in to comment.