html detection workflow #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: HTML tag detection | |
on: [push, pull_request] | |
jobs: | |
html-check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run grep command and fail on match | |
run: | | |
# -n: show line number | |
# -H: show filename | |
# -o: show only the matching part of the line | |
if grep -nHo '</[^>]*>' mkdocs/docs/HPC/*.md; then | |
echo "Error: HTML tags detected in Markdown files!" >&2 | |
exit 1 | |
else | |
echo "No HTML tags detected in Markdown files." | |
fi |