-
-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathappveyor.yml
More file actions
33 lines (27 loc) · 631 Bytes
/
appveyor.yml
File metadata and controls
33 lines (27 loc) · 631 Bytes
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
# build version format
version: "{build}"
# fix lineendings in Windows
init:
- git config --global core.autocrlf input
# Test against these versions of Node
environment:
matrix:
- nodejs_version: "10"
- nodejs_version: "12"
- nodejs_version: "14"
platform:
- x64
matrix:
fast_finish: true
skip_tags: true
skip_branch_with_pr: true
# Setup Node environment
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- node --version
- npm --version
- gcc --version
- npm install
# Run custom build script instead of MSBuild
build_script:
- powershell .\scripts\ci\build-and-test.ps1