Awesome-Selfhosted-Mirror/.travis.yml
n8225 d2bae47d98 Add basics tests to isolate errors.
Add color to output.
Cleanup code a little(needs some more work).
Remove code required for danger.
2020-01-29 17:17:27 -06:00

24 lines
700 B
YAML

language: node_js
node_js:
- "node"
before_install:
- rvm install 2.6.2
- gem install awesome_bot
- npm install colors
before_script:
script:
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then git diff origin/master -U0 README.md | grep -Pos "(?<=^\+).*" >> temp.md; fi || (exit 0)'
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then node tests/test.js temp.md; else node tests/test.js README.md; fi'
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then if [ -f temp.md ]; then awesome_bot temp.md --allow-redirect --skip-save-results; else (exit 0); fi else awesome_bot README.md --allow-redirect --skip-save-results; fi'
notifications:
email: false
branches:
only:
- master