.travis.yml 371 B

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