actions: Test check files
All checks were successful
OnPush / CheckFiles (push) Successful in 6s

This commit is contained in:
Nathan Woodburn 2023-07-17 16:48:37 +10:00
parent bdd3c4d980
commit a09231a6be
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -14,3 +14,12 @@ jobs:
- name: List HTML files
run: |
ls *.html
- name: Check files
run: |
for file in *.html; do
if grep -q "<file>" "$file"; then
echo "File $file contains <file>!"
exit 1
fi
done