Using Travis-CI for a Node.js Project

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?

+3


source to share


1 answer


OK received. The file .travis.yml

must not contain "tab" characters. I replaced them with spaces instead.



+3


source







All Articles