Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor updates to user docs - concepts #7345

Merged
merged 9 commits into from
Jul 1, 2024
Prev Previous commit
Next Next commit
add user guide link checker
  • Loading branch information
tom-webber committed Jun 26, 2024
commit 4d61e16d65d874a6b1a9a107a0a8c411d5ff1d99
28 changes: 28 additions & 0 deletions .github/workflows/gh-pages-test-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: check user guide links

on:
pull_request:
paths:
- "source/**"

permissions: {}
jobs:
check-links:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
id: checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

- name: Lychee
id: lychee
uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 # v1.10.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: --verbose --no-progress './**/*.md' './**/*.html' './**/*.erb' --exclude-loopback --accept 403,200,429
fail: true
Loading
Oops, something went wrong.