Files
probot.github.io/script/html-proofer
tcbyrd 14292dc7ea Updates to clean up tests
Ignore links to localhost in tests

This org doesn't exist

Removing unmaintained app (returning 503)

Use `/ping` for tests since there is an option to disable stats
2018-04-06 07:39:59 -04:00

28 lines
670 B
Ruby
Executable File

#!/usr/bin/env ruby
require "bundler/setup"
require "html-proofer"
# add links to ignore here
url_ignores = [
# Installation links require being signed in to GitHub
%r{https://github.com/apps/.*/installations/new},
"https://mochajs.org/",
%r{mit-license\.org}, # misconfigured SSL or old certs on Travis CI?
%r{https://localhost:*/*}, # Ignore links to localhost in documentation
]
begin
HTMLProofer::Runner.new(["_site"],
:type => :directory,
:url_ignore => url_ignores,
:file_ignore => [%r{_site/api/}],
:verbose => !!ENV["VERBOSE"],
:check_html => true,
:empty_alt_ignore => true
).run
rescue => e
puts "\n", e
exit 1
end