Skip to content

Commit 2b14ebb

Browse files
authored
Merge pull request #159 from artichoke/dev/lopopolo-purge-markdown-link-check
Remove markdown link check
2 parents e4b4be6 + ac91019 commit 2b14ebb

File tree

3 files changed

+0
-72
lines changed

3 files changed

+0
-72
lines changed

.github/markdown-link-check.json

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/markdown-link-check.yaml

Lines changed: 0 additions & 34 deletions
This file was deleted.

Rakefile

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -90,22 +90,3 @@ task :test do
9090
end
9191

9292
Bundler::Audit::Task.new
93-
94-
namespace :release do
95-
link_check_files = FileList.new('**/*.md') do |f|
96-
f.exclude('node_modules/**/*')
97-
f.exclude('**/target/**/*')
98-
f.exclude('**/vendor/*/**/*')
99-
f.include('*.md')
100-
f.include('**/vendor/*.md')
101-
end
102-
103-
link_check_files.sort.uniq.each do |markdown|
104-
desc 'Check for broken links in markdown files'
105-
task markdown_link_check: markdown do
106-
command = ['npx', 'markdown-link-check', '--config', '.github/markdown-link-check.json', markdown]
107-
sh command.shelljoin
108-
sleep(rand(1..5))
109-
end
110-
end
111-
end

0 commit comments

Comments
 (0)