Skip to content
This repository was archived by the owner on Aug 4, 2021. It is now read-only.

Commit 24a377d

Browse files
authored
Create appveyor.yml (#14)
1 parent a26b09e commit 24a377d

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+
matrix:
4+
- nodejs_version: "4"
5+
- nodejs_version: "6"
6+
- nodejs_version: "7"
7+
8+
# Install scripts. (runs after repo cloning)
9+
install:
10+
# Get the latest stable version of Node.js or io.js
11+
- ps: Install-Product node $env:nodejs_version
12+
# Update npm
13+
- npm install -g npm
14+
# install modules
15+
- npm install
16+
17+
# Post-install test scripts.
18+
test_script:
19+
# Output useful info for debugging.
20+
- node --version
21+
- npm --version
22+
# run tests
23+
- npm test
24+
25+
# Don't actually build.
26+
build: off

0 commit comments

Comments
 (0)