Skip to content
link

GitHub Action

Broken Web Link Checker

1.0.3 Latest version

Broken Web Link Checker

link

Broken Web Link Checker

This action traverses all of the pages of a given website and checks to see if they are valid working links

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Broken Web Link Checker

uses: elliotforbes/[email protected]

Learn more about this action in elliotforbes/broken-link-checker

Choose a version

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'