Closed fisker closed 4 years ago
Master not running, says Build type disabled via repository settings (push).
https://travis-ci.org/avajs/eslint-plugin-ava/requests
Is it because of this line? https://github.com/avajs/eslint-plugin-ava/blob/master/.travis.yml#L12
maybe
- - if [ $INTEGRATION == true ]; then npm run integration; fi
+ - if [[ $INTEGRATION == true ]]; then npm run integration; fi
Fixed: https://travis-ci.org/avajs/eslint-plugin-ava/jobs/631839007 Somehow the Travis setting to build on branches was disabled.
- if [ $INTEGRATION == true ]; then npm run integration; fi
- if [[ $INTEGRATION == true ]]; then npm run integration; fi
We should still do this though. As [[
is better and to be as close as possible to the Unicorn setup.
Thanks for fixing 👌