diff --git a/.travis.yml b/.travis.yml index 32213912a..043745934 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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