Skip to content

Commit 45df3a5

Browse files
Add AppVeyor for Windows testing
1 parent 2005609 commit 45df3a5

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

appveyor.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Test against the latest version of this Node.js version
2+
environment:
3+
nodejs_version: "8"
4+
5+
# Cache dependencies
6+
cache:
7+
- node_modules
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 run build
23+
- npm test
24+
25+
# Don't actually build.
26+
build: off

0 commit comments

Comments
 (0)