backoffice/node_modules/bootstrap-colorpicker/.travis.yml

16 lines
424 B
YAML
Raw Normal View History

2020-02-06 10:09:39 +00:00
language: node_js
node_js:
- "0.10"
- "0.12"
- "5"
- "6"
before_script:
- npm install -g grunt-cli bower
script:
- npm install
- bower install
- grunt --verbose
# Check that files didn't change after running grunt. It should be run before pushing any code change.
- if ! git diff --name-only --quiet HEAD~1 -- dist docs src index.html --; then echo "Files where modified after grunt execution..."; fi