js-validation-check
Version:
Javascript validations made easy
39 lines (31 loc) • 684 B
YAML
# Set up notification options
notifications:
email:
recipients:
- lavakumar.dukanam@gmail.com
- saiumesh.d@gmail.com
# change is when the repo status goes from pass to fail or vice versa
on_success: change
on_failure: always
# specify language
language: node_js
# specify language options
node_js:
- '8.9.4'
# configure which branches to run
branches:
# whitelist
only:
- master
- /^deploy-.*$/ # regex ok
# blacklist
except:
- dontrunme
- test
## begin build steps
####################
before_install:
- npm install
after_success:
- test $TRAVIS_PULL_REQUEST = false
&& git push