2021-11-03 05:59:35 -05:00
|
|
|
name: Broken link check
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- gh-pages
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
broken_link_checker_job:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Check for broken links
|
|
|
|
steps:
|
|
|
|
- name: Check for broken links
|
|
|
|
id: link-report
|
2024-08-13 09:03:12 -05:00
|
|
|
uses: celinekurpershoek/link-checker@v1.0.2
|
2021-11-03 05:59:35 -05:00
|
|
|
with:
|
|
|
|
# Required:
|
|
|
|
url: 'https://resinsight.org/'
|
|
|
|
# optional:
|
|
|
|
honorRobotExclusions: false
|
|
|
|
ignorePatterns: ''
|
|
|
|
recursiveLinks: false # Check all URLs on all reachable pages (could take a while)
|
|
|
|
- name: Get the result
|
|
|
|
run: echo "${{steps.link-report.outputs.result}}"
|