sourcecred/.travis.yml
William Chargin 678962ba7a
travis: fix notification email config (#864)
Summary:
In #339, we attempted to configure Travis to email us on build failure.
But we misread [the docs]: the emails need to be preceded by a hyphen.

[the docs]: https://docs.travis-ci.com/user/notifications#configuring-email-notifications

This is understandable because the Travis documentation renders the
critical hyphen with `#999` against a background of `#f5f2f0` at 12px,
which has a contrast ratio of only 2.55, failing WCAG 2.0 categorically.

Test Plan:
Fingers crossed.

wchargin-branch: travis-email-config
2018-09-19 17:07:15 -07:00

11 lines
216 B
YAML

language: node_js
node_js:
- "node"
script: yarn test
notifications:
email:
recipients:
- wchargin+travis-sourcecred@gmail.com
- decentralion+travis-sourcecred@dandelion.io
on_failure: always