-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathappveyor.yml
43 lines (43 loc) · 1.14 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
42
43
# ----------------------
# Current build version.
# ----------------------
version: 1.0.8-{build}
# --------------------------------------------------------
# Test against the latest version of this Node.js version.
# --------------------------------------------------------
environment:
matrix:
- nodejs_version: "6.17.1"
- nodejs_version: "8.17.0"
- nodejs_version: "10.19.0"
- nodejs_version: "12.15.0"
- nodejs_version: "13.8.0"
# -------------------------
# Choose Windows platforms.
# -------------------------
platform:
- x86
- x64
# ------------------------------------------
# Install scripts. (runs after repo cloning)
# ------------------------------------------
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# Output useful info for debugging.
- node --version
- npm --version
# Install node_modules
- npm install
# --------------------------
# Post-install test scripts.
# --------------------------
test_script:
# run tests
- npm run test
# --------------------
# Don't actually build.
# --------------------
build: off
# --------------------
# EOF