forked from sheetjs/sheetjs
SheetJS
d7ecca0e8b
- BIFF 2-12 formula parsing - more content type coverage - unified `.f` form: A1-style string - `.F` field for array formulae - formula output groups array formulae - bin script -A --arrays output JS row objects - whitespace robustness in inline string xml - UTF-8 parsing in rich text runs (fixes #505 h/t @fuchsc) - bold/italic/underline accept null val attr (h/t @qqilihq) - sst trimming (fixes #176 h/t @shakhal @oising)
22 lines
389 B
YAML
22 lines
389 B
YAML
language: node_js
|
|
node_js:
|
|
- "7"
|
|
- "6"
|
|
- "5"
|
|
- "4"
|
|
- "0.12"
|
|
- "0.10"
|
|
- "0.9"
|
|
- "0.8"
|
|
before_install:
|
|
- "npm install -g npm@next"
|
|
- "npm install -g mocha@2.x voc"
|
|
- "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"
|