.travis.yml 438 B

12345678910111213
  1. language: node_js
  2. node_js:
  3. - "6"
  4. - "8"
  5. before_script:
  6. - npm install -g grunt-cli
  7. - curl -o- -L https://yarnpkg.com/install.sh | bash
  8. script:
  9. - yarn install
  10. - grunt --verbose
  11. # Check that files didn't change after running grunt. It should be run before pushing any code change.
  12. - if ! git diff --name-only --quiet -- dist docs src index.html --; then echo \"Files where modified after grunt execution!!...\"; exit 1; fi