Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,9 @@ jobs:
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Initialize search index
run: npx -y pagefind --site public
- name: Check for unrendered footnotes
run: |
if grep -rnEo '\[\^[0-9]+\]' public; then
echo "FAIL: Unrendered footnotes found. See lines above." >&2
exit 1
fi
Loading