mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 03:08:51 +01:00
8 lines
195 B
Ruby
8 lines
195 B
Ruby
require "html/proofer"
|
|
|
|
task :test do
|
|
sh "bundle exec jekyll build --trace"
|
|
# ignore href="#" for the "Copy to clipboard" button
|
|
HTML::Proofer.new("./_site", :href_ignore => ["#"]).run
|
|
end
|