datatable/.travis.yml
Faris Ansari 9e4d0bb9c8 chore(lint): Add lint step in travis
Add lint step in travis, add lint and commit script in package.json. Update Contributing information
in Readme
2018-07-07 23:49:45 +05:30

22 lines
333 B
YAML

language: node_js
node_js:
- 8
cache:
directories:
- ~/.npm
- ~/.cache
- node_modules
branches:
only:
- master
notifications:
email: false
install:
- npm install
script:
- npm run lint
- npm run build
- npm run test
after_success:
- ./node_modules/.bin/travis-deploy-once "npm run semantic-release"