File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments