Skip to content

Commit 6273e0a

Browse files
committed
test(windows): add appveyor
1 parent 739fe5e commit 6273e0a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

appveyor.yml

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

0 commit comments

Comments
 (0)