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
9 changes: 9 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ jobs:
run: |
mkdocs build --strict
- name: Verify that there are no variables in generated HTML
run: |
# Check for raw MkDocs variables in the generated HTML
if grep -Erl "\[\[=.*=\]\]" site > /dev/null; then
echo "Raw variables detected in the following files:"
grep -Erl "\[\[=.*=\]\]" site
exit 1
fi
vale-check:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
Expand Down