-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #4 - Integrated TravisCI #16
base: master
Are you sure you want to change the base?
Conversation
.travis.yml
Outdated
@@ -0,0 +1 @@ | |||
language:node_js |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harshanas
You have to specify nodejs versions and a script too. (test script is optional. But, it's nice to specify that too)
Eg:-
language: node_js
node_js:
- 6.2.2
script:
- npm test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dinukadesilva node version added . Thank you :)
As a best practice, it's nice to have each commit an atomic change. So, how about if you merge all these commits to a one commit with a meaningfull message. |
@@ -0,0 +1,8 @@ | |||
sudo: false | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Im not really certain whether we really need this line.
sudo: false
This fixes issue #4