I am trying to set up travis-ci for my node.js project hosted on github. For some reason travis keeps using ruby ββworker to build / test the project.
My.travis.yml looks like this:
language: node_js
node_js:
- 0.6
script:
- "make test"
What am I missing?
source
to share