-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from gemini-testing/update-ci-settings
Update ci settings
- Loading branch information
Showing
6 changed files
with
92 additions
and
5 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,2 +1,3 @@ | ||
node_modules | ||
*.log | ||
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 |
---|---|---|
@@ -1,2 +1,10 @@ | ||
language: node_js | ||
node_js: 4 | ||
|
||
matrix: | ||
include: | ||
- node_js: "4" | ||
env: COVERALLS=1 | ||
- node_js: "6" | ||
|
||
after_success: | ||
- if [ "$COVERALLS" = "1" ]; then npm run coveralls; fi |
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,48 @@ | ||
# Contributing | ||
|
||
New contributions are welcomed. Follow this guide if you want to make one. | ||
|
||
## Make a pull request | ||
|
||
Follow [Github guide](https://help.github.com/articles/creating-a-pull-request) to fork a repo | ||
and create a pull request. | ||
|
||
All bug fixes and new features should go to the [`master`](https://github.com/gemini-testing/glob-extra/tree/master) branch. | ||
|
||
## Commit messages | ||
|
||
Commit messages should describe what have been changed and why. The first line should be wrapped | ||
to 50 characters, the second one should be blank. All other lines should be wrapped to 72 characters. | ||
|
||
## Code style and static analysis | ||
|
||
Before submitting pull request, make sure your code passes all code style and static analysis checks. | ||
To do so, run: | ||
|
||
``` | ||
npm run lint | ||
``` | ||
|
||
## Tests | ||
|
||
Make sure all tests are passing before submitting pull request: | ||
|
||
``` | ||
npm test | ||
``` | ||
|
||
If you are fixing the bug, add a test that fails without your patch and passes with it. If you are | ||
adding a feature, write a test for it. To see test coverage report run: | ||
|
||
``` | ||
npm run cover | ||
``` | ||
|
||
## Issues reporting | ||
|
||
When submitting an issue please do following: | ||
|
||
1. [Search](https://github.com/gemini-testing/glob-extra/issues) for same issues on github in order to prevent duplicates | ||
2. Provide the most detailed issue description so we will additional info to work with | ||
|
||
Note that if no response for contributors questions will be provided in 1 week then issue may be considered as irrelevant/resolved and may be closed. |
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,20 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Sergej Tatarincev | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
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
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