Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 729 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 729 Bytes

Broken Link Checker Action

This action trawls a deployed website and crawls the site looking for broken links before producing a report.

This uses the raviqqe/muffet tool in order to rapidly crawl a website for these broken links.

This task will fail should there be any broken links present and it will output the results to stdout.

Inputs

url

Required The root URL of the website you wish to check.

Example Usage

broken_link_checker_job:
  runs-on: ubuntu-latest
  name: Check for broken links
  steps:
  - name: Check for broken links
    id: link-report
    uses: elliotforbes/[email protected]
    with:
      url: 'https://tutorialedge.net'