MyCrypto/.travis.yml
William O'Beirne 31963b334c CI & Commit Hook Improvements (#411)
* Add tscheck command, add more stuff to prepush and precommit hooks, clean up travis output.

* Move tscheck to prepush, remove running tests entirely.

* Put tslint on prepush as well.
2017-11-29 17:20:24 -06:00

22 lines
323 B
YAML

dist: trusty
sudo: required
language: node_js
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install --silent
notifications:
email:
on_success: never
on_failure: never
script:
- npm run test
- npm run tslint
- npm run tscheck