You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
419 B
12 lines
419 B
sudo: false
|
|
language: node_js
|
|
node_js: 10
|
|
addons:
|
|
chrome: stable
|
|
before_install:
|
|
- export TRAVIS_COMMIT_MSG="[deploy] $(git log --format='%h - %B' --no-merges -n 1)"
|
|
- export TRAVIS_COMMIT_USER="$(git log --no-merges -n 1 --format=%an)"
|
|
- export TRAVIS_COMMIT_EMAIL="$(git log --no-merges -n 1 --format=%ae)"
|
|
after_success:
|
|
- sh build/deploy-ci.sh
|
|
- cat ./test/unit/coverage/lcov.info | ./node_modules/.bin/coveralls
|