-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
appveyor.yml
31 lines (31 loc) · 916 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
################################################################################################
# Copyright (c) Rowe Wilson Frederisk Holme. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
################################################################################################
---
version: 0.0.{build}
image: Visual Studio 2019
environment:
matrix:
- nodejs_version: "12"
- nodejs_version: "14"
- nodejs_version: "15"
matrix:
allow_failures:
- nodejs_version: "10"
- nodejs_version: "15"
install:
- ps: Install-Product node $env:nodejs_version
build_script:
- npm install yarn -g
- yarn
- yarn run compile
# test_script:
# - npm run test
notifications:
- provider: Email
to:
on_build_success: true
on_build_failure: true
on_build_status_changed: false