-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
40 lines (33 loc) · 829 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
37
38
39
40
image:
- Visual Studio 2022
- Ubuntu2204
- macos-monterey
environment:
matrix:
- nodejs: "20"
install:
- cmd: powershell Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs) x64
- sh: nvm ls
- sh: nvm use $nodejs || nvm install $nodejs
- cmd: npm install -g -q gulp >nul
- sh: npm install -g -q gulp &> /dev/null
- npm install -q --unsafe-perm=true
test_script:
- gulp appveyor
after_test:
- ps: |
$url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)"
$file = '.\coverage\JUnit.xml'
(New-Object 'System.Net.WebClient').UploadFile($url, (Resolve-Path $file))
skip_commits:
files:
- .idea
- '**/*.md'
- '**/*.d.ts'
- '**/*.gif'
- '**/*.png'
- LICENSE
- .gitignore
build: off
cache:
- node_modules -> package.json