Add a simple “.appveyor.yml” file to the root of your project:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
environment: | |
matrix: | |
- nodejs_version: "6.9" | |
matrix: | |
fast_finish: true | |
install: | |
- ps: Install-Product node $env:nodejs_version | |
- npm install | |
test_script: | |
- node --version | |
- npm test | |
build: off |
Next sign in to https://ci.appveyor.com and mark your repo as an AppVeyor project.
Once you’ve added your project you can build your project within AppVeyor. A build will also get kicked off with every new commit/push to your repo:
Add the following code to you readme.md file in GitHub to get a CI build badge.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[](https://ci.appveyor.com/project/stevenh77/angular-lob-app/branch/master) |
No comments:
Post a Comment