Dangerfile 180 B

12345678
  1. # Check links
  2. require 'json'
  3. results = File.read 'ab-results-README.md-markdown-table.json'
  4. j = JSON.parse results
  5. if j['error']==true
  6. fail j['title']
  7. markdown j['message']
  8. end