Run grunt build command on Travis CI
Have you made sure to install grunt-cli globally on your Travis node? My Travis CI config looks like: language: node_js node_js: – “0.8” before_install: npm install -g grunt-cli install: npm install before_script: grunt build And my package.json: { … “scripts”: { “test”: “grunt test” }, … } I will explain the flow of steps that … Read more