Skip to content

Broken link check

Broken link check #51

Workflow file for this run

name: Broken link check
on:
page_build:
jobs:
broken_link_checker_job:
runs-on: ubuntu-latest
name: Check for broken links
steps:
- name: Check for broken links
id: link-report
uses: celinekurpershoek/link-checker@v1.0.1
with:
# Required:
url: 'https://hupo-psi.github.io/mzQC/'
# optional:
honorRobotExclusions: false
ignorePatterns: 'github,google'
recursiveLinks: false # Check all URLs on all reachable pages (could take a while)
- name: Get the result
run: echo "${{steps.link-report.outputs.result}}"