| 12345678910111213141516 |
- sudo: false # route build to the container-based infrastructure for a faster build
- language: node_js
- node_js:
- - "11" # restore back to "node" (without quotes) when Travis is compatible with Node 12
- cache:
- directories:
- - node_modules
- env:
- global:
- - TZ="America/Los_Angeles" # for Headless Chrome. otherwise will be UTC, bad for tests
- script: npm run ci
|