forked from sheetjs/sheetjs
SheetJS
44b55c5c56
- jscs linting to check for trailing comma issues (h/t @altkatz) - IE: phased out lazy string indexing in favor of charCodeAt - XLSX: replaced certain operations in hot functions with faster alternatives - updated SSF to 0.7.1 - improved coverage in tests
16 lines
309 B
YAML
16 lines
309 B
YAML
language: node_js
|
|
node_js:
|
|
- "0.11"
|
|
- "0.10"
|
|
- "0.8"
|
|
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"
|