File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 2525 <a href =" http://makeapullrequest.com " >
2626 <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square" alt="Make a PR">
2727 </a >
28+ <a href =" https://ci.appveyor.com/project/deployd/deployd-cli " >
29+ <img src =" https://ci.appveyor.com/api/projects/status/github/deployd/deployd-cli?svg=true " alt =" Appveyor Build Status " >
30+ </a >
2831</p >
2932<br >
3033
Original file line number Diff line number Diff line change 1+ # Test against the latest version of this Node.js version
2+ environment :
3+ nodejs_version : " 6"
4+
5+ # Install scripts. (runs after repo cloning)
6+ install :
7+ # Get the latest stable version of Node.js or io.js
8+ - ps : Install-Product node $env:nodejs_version
9+ # install modules
10+ - npm install
11+
12+ # Post-install test scripts.
13+ test_script :
14+ # Output useful info for debugging.
15+ - node --version
16+ - npm --version
17+ # run tests
18+ - npm test
19+
20+ # Don't actually build.
21+ build : off
You can’t perform that action at this time.
0 commit comments