سؤال

I'm trying to set up travis-ci for my node.js project hosted on github. For some reason travis keeps using ruby worker for building/testing the project.

My .travis.yml looks like:

language: node_js

node_js:
    - 0.6

script: 
    - "make test"

What am I missing?

هل كانت مفيدة؟

المحلول

OK got it. The .travis.yml file must not contain 'tab' characters. Instead I have replaced them with spaces.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top