forked from sheetjs/sheetjs
SheetJS
aff7b95272
- TZ consistency for DBF and others (closes #663 h/t @peeyushsrivastava) - Date1904 XLSX/XLSB/XLS/XLML consistency (fixes #175 h/t @SheetJSDev) - dateNF corrects for plaintext date parsing (fixes #658 h/t @mmancosu) - new travis tests override local time zones
40 lines
829 B
YAML
40 lines
829 B
YAML
language: node_js
|
|
node_js:
|
|
- "8"
|
|
- "7"
|
|
- "6"
|
|
# note: travis has been acting up on old versions of node
|
|
# - "5"
|
|
# - "4"
|
|
# - "0.12"
|
|
# - "0.10"
|
|
# - "0.9"
|
|
# - "0.8"
|
|
matrix:
|
|
include:
|
|
- node_js: "6"
|
|
env: TZ="America/New_York"
|
|
- node_js: "8"
|
|
env: TZ="America/Los_Angeles"
|
|
- node_js: "6"
|
|
env: TZ="Europe/London"
|
|
- node_js: "8"
|
|
env: TZ="Europe/Berlin"
|
|
- node_js: "6"
|
|
env: TZ="Asia/Kolkata"
|
|
- node_js: "7"
|
|
env: TZ="Asia/Shanghai"
|
|
- node_js: "8"
|
|
env: TZ="Asia/Seoul"
|
|
before_install:
|
|
- "npm install -g npm@4.3.0"
|
|
- "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"
|