2016-10-10 00:48:35 +00:00
|
|
|
language: node_js
|
|
|
|
sudo: false
|
|
|
|
node_js:
|
|
|
|
## Some of the ES6 syntax used in the browser-polyfill sources is only supported on nodejs >= 6
|
|
|
|
- '6'
|
|
|
|
|
|
|
|
script:
|
|
|
|
- npm run build
|
|
|
|
- COVERAGE=y npm run test-coverage
|
|
|
|
|
|
|
|
after_script: npm run publish-coverage
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
2016-11-02 20:51:12 +00:00
|
|
|
- irc.mozilla.org#webextensions
|
2016-10-10 00:48:35 +00:00
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
2016-11-14 21:34:17 +00:00
|
|
|
use_notice: true
|
|
|
|
template:
|
|
|
|
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} (%{build_url})"
|