Skip to content

Commit fc3e45e

Browse files
committed
add appveyor.yml
1 parent b50399f commit fc3e45e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

appveyor.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Test against the latest version of this Node.js version
2+
environment:
3+
matrix:
4+
- nodejs_version: "15"
5+
- nodejs_version: "14"
6+
- nodejs_version: "12"
7+
- nodejs_version: "10"
8+
9+
# Install scripts. (runs after repo cloning)
10+
install:
11+
# Get the latest stable version of Node.js or io.js
12+
- ps: Install-Product node $env:nodejs_version
13+
# install modules
14+
- npm install
15+
16+
# Post-install test scripts.
17+
test_script:
18+
# Output useful info for debugging.
19+
- node --version
20+
- npm --version
21+
# run tests
22+
- npm test
23+
24+
# Don't actually build.
25+
build: off

0 commit comments

Comments
 (0)