-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce Travis CI for unit tests and code coverage. Removed support for Jade. Added badges. Reformatted code and README.md.
- Loading branch information
Richard Quadling
authored and
Richard Quadling
committed
Jul 19, 2017
1 parent
c0527cf
commit bb8c5d3
Showing
20 changed files
with
2,551 additions
and
2,291 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules | ||
npm-debug.log | ||
tmp | ||
coverage |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- "4.1" | ||
- "4.0" | ||
install: | ||
- npm install | ||
before_script: | ||
- npm install grunt-cli istanbul -g | ||
script: | ||
- istanbul cover grunt test | ||
- grunt coveralls |
Oops, something went wrong.