.travis.yml 191 B

12345678910111213141516
  1. language: node_js
  2. node_js:
  3. - "stable"
  4. install:
  5. - npm install
  6. script:
  7. - npm run lint
  8. - npm run test:ts
  9. - npm run build
  10. cache:
  11. directories:
  12. - "node_modules"