Install nodejs & jshint on travis

This commit is contained in:
Łukasz Mierzwa
2017-04-25 20:22:08 -07:00
parent 5a53aa1ff7
commit fcebd0dba7

View File

@@ -6,5 +6,15 @@ go:
go_import_path: github.com/cloudflare/unsee
# nodejs is needed so that we can install jshint
addons:
apt:
packages:
- nodejs
# install jshint, it's used for linting js files (needs nodejs)
before_script:
- npm install jshint
script:
- make test