sheetjs-clone/.travis.yml
SheetJS 704442c3a6 removing node 0.8 from test suite
travis uses an old version of npm with node 0.8, causing issues with modules
that use "^" in the version specification.

See https://travis-ci.org/SheetJS/js-xlsx/jobs/56966869 for more info
2015-04-02 20:05:55 -04:00

17 lines
372 B
YAML

language: node_js
node_js:
- "iojs"
- "0.11.14"
- "0.10"
# - "0.8" # commented because of npm issue with camelcase
before_install:
- "npm install -g mocha"
- "npm install blanket"
- "npm install xlsjs"
- "npm install coveralls mocha-lcov-reporter"
before_script:
- "make init"
- "cd test_files; make all; cd -"
after_success:
- "make coveralls-spin"