Warn on awesomebot fails

pull/892/head
nrew225 2016-12-16 18:54:22 -06:00
parent f584b1502e
commit 08ef1288a8
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,6 @@ before_script:
script:
- git diff master.. -U0 README.md | grep -Pos "(?<=^\+).*" >> temp.md || (exit 0)
- node test.js temp.md
- awesome_bot temp.md --allow-redirect --allow-ssl
- danger --verbose
notifications:

View File

@ -26,11 +26,12 @@ end
# Check syntax
if has_readme_changes
awesome_bot temp.md --allow-redirect --allow-ssl
require 'json'
syntaxresults = File.read 'syntaxcheck.json'
sj = JSON.parse syntaxresults
if sj['error']==true
fail sj['title']
warn sj['title']
markdown sj['message']
end
end