forked from bitwarden/jslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
36 lines (30 loc) · 922 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
image:
- Visual Studio 2017
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
install:
- ps: choco install cloc --no-progress
- ps: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git
before_build:
- cmd: node --version
- cmd: npm --version
build_script:
- cmd: npm install
- cmd: npm run lint
- cmd: npm run build
- cmd: npm run test
- cmd: 7z a coverage-%APPVEYOR_BUILD_NUMBER%.zip coverage\*
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'))
}
artifacts:
- path: coverage-%APPVEYOR_BUILD_NUMBER%.zip