-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
44 lines (40 loc) · 770 Bytes
/
appveyor.yml
File metadata and controls
44 lines (40 loc) · 770 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
34
35
36
37
38
39
40
41
42
43
44
branches:
only:
- main
image:
- Visual Studio 2019
- Ubuntu
- macOS
init:
- git config --global core.autocrlf true
environment:
matrix:
- nodejs_version: 15
- nodejs_version: 14
- nodejs_version: 13
- nodejs_version: 12
- nodejs_version: 11
- nodejs_version: 10
- nodejs_version: 9
- nodejs_version: 8
for:
- matrix:
only:
- image: Visual Studio 2019
install:
- ps: Install-Product node $env:nodejs_version
test_script:
- node --version
- npm --version
- npm test
- matrix:
only:
- image: macOS
- image: Ubuntu
install:
- nvm use $nodejs_version
test_script:
- node --version
- npm --version
- npm test
build: off