-
Notifications
You must be signed in to change notification settings - Fork 222
/
appveyor.yml
46 lines (35 loc) · 837 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
41
42
43
44
45
46
# this script based off of https://github.com/tolbertam/mocha-appveyor-reporter/blob/master/appveyor.yml
branches:
except:
- gh-pages
image:
- Visual Studio 2022
- Ubuntu2204
environment:
matrix:
- nodejs_version: "18"
PYTHON: "C:\\Python312-x64"
- nodejs_version: "20"
PYTHON: "C:\\Python312-x64"
install:
- cmd: powershell Install-Product node $env:nodejs_version
- sh: nvm install $nodejs_version
- node --version
- npm install
- npm install codecov -g
- npm install nyc -g
build: off
test_script:
- npm run appveyorTest
- nyc report --reporter=json
- codecov -f coverage/coverage-final.json
cache:
- node_modules -> package.json
notifications:
- provider: Email
to:
on_build_success: false
skip_commits:
files:
- '**/*.md'