.travis.yml 269 B

1234567891011121314151617181920
  1. # need to declare the language as well as the matrix below
  2. language: node_js
  3. os:
  4. - windows
  5. node_js:
  6. - 14
  7. - 12
  8. - 10
  9. - 8
  10. - 6
  11. env: "DEPLOY_VERSION=testing"
  12. install:
  13. - "node . install"
  14. script:
  15. - "node . run tap -- \"test/tap/*.js\" -t600 -Rclassic -c"