-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
42 lines (35 loc) · 1.03 KB
/
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
# Appveyor CI configuration
# https://www.appveyor.com/docs/
# These images include Node.js, nvm, yarn and Docker pre-installed
# https://www.appveyor.com/docs/linux-images-software/
# https://www.appveyor.com/docs/windows-images-software/
image:
- Ubuntu
- Visual Studio 2019
branches:
only:
- master
# The SKIP_DOCKER environment variable causes Docker tests to be skipped.
# Test multiple Node.js versions, but only run Docker tests with one of them
# (because it's sufficient and Docker tests take half an hour on Windows!)
environment:
matrix:
- nodejs_version: "8"
SKIP_DOCKER: "1"
- nodejs_version: "10"
SKIP_DOCKER: "1"
- nodejs_version: "12"
# lines starting with 'cmd:' run on Windows only (cmd.exe)
# lines starting with 'sh:' run on Linux only (bash)
install:
- cmd: powershell Install-Product node $env:nodejs_version
- sh: nvm install $nodejs_version
- npm --version
- npm install
test_script:
- node --version
- npm --version
- docker --version
- npm test
build: off
deploy: off