Files
taimed/node_modules/grunt-karma/.travis.yml
2025-07-24 17:21:45 +08:00

20 lines
374 B
YAML

language: node_js
node_js:
- 10
- 12
before_install:
- npm config set loglevel warn
services:
- xvfb
script:
- commitlint-travis
- npm test
after_success:
# run automated release process with semantic-release
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_EVENT_TYPE" == "push" && "$TRAVIS_NODE_VERSION" == "12" ]]; then
semantic-release;
fi;