Skip to content

Commit 9800807

Browse files
committed
Add appveyor CI
1 parent 5d244a9 commit 9800807

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

appveyor.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Test against this version of Node.js
2+
environment:
3+
matrix:
4+
# node.js
5+
- nodejs_version: "7"
6+
- nodejs_version: "6"
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+
# install modules
13+
- npm intall
14+
15+
# Post-install test scripts.
16+
test_script:
17+
# Output useful info for debugging.
18+
- node --version
19+
- npm --version
20+
# run tests
21+
- npm test
22+
23+
# Don't actually build.
24+
build: off
25+
26+
notifications:
27+
- provider: Email
28+
to:
29+
- housecor@gmail.com
30+
subject: 'Build failed: react-slingshot'
31+
message: The continuous integration build failed. See https://ci.appveyor.com/project/CoryHouse/react-slingshot/ for details.
32+
on_build_success: false
33+
on_build_failure: true
34+
on_build_status_changed: false

0 commit comments

Comments
 (0)