-
Notifications
You must be signed in to change notification settings - Fork 48
33 lines (30 loc) · 1.07 KB
/
validate-mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Validate static MkDocs pages
on: pull_request
jobs:
validate-mkdocs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build MkDocs pages
uses: docker://squidfunk/mkdocs-material:8.2.8
timeout-minutes: 1
with:
args: >-
build
--verbose
--strict
- id: format-github-repo
run: echo "repo-name=${GITHUB_REPOSITORY#*\/}" >> $GITHUB_OUTPUT
- name: Test links
timeout-minutes: 10
uses: docker://klakegg/html-proofer:3.16.0
env:
GITHUB_REPOSITORY: ${{ github.repository }}
with:
args: >-
--allow-hash-href
--check-html
--http-status-ignore 302
--file-ignore ./site/404.html
--url-ignore "https://fonts.gstatic.com,/hypernews.cern.ch/,/github.com\/osg-htc\/${{ steps.format-github-repo.outputs.repo-name }}\/edit/,/osg-htc.org\/${{ steps.format-github-repo.outputs.repo-name }}/,/\/${{ steps.format-github-repo.outputs.repo-name }}/"
./site