Skip to content

Commit

Permalink
Add web-based link checker action
Browse files Browse the repository at this point in the history
This one crawls a website rather than just checking files
  • Loading branch information
bernhold committed Oct 30, 2023
1 parent 06e39f4 commit b97c30f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check-website-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Check website links

on:
workflow_dispatch:

broken_link_checker_job:
runs-on: ubuntu-latest
name: Check for broken links
steps:
- name: Check for broken links
id: link-report
uses: elliotforbes/broken-link-checker@1.0.2
with:
url: "https://ideas-productivity.github.io/"
cmd_params: "--buffer-size=8192 --max-connections=10 --color=always --verbose"

0 comments on commit b97c30f

Please sign in to comment.