Skip to content

Commit

Permalink
Add GitHub action to run tidy html
Browse files Browse the repository at this point in the history
  • Loading branch information
FerPerales committed Oct 29, 2024
1 parent 55192db commit 029791e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/tidy_html5.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: html_tidy

on: push

jobs:
html_tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- run: sudo apt install tidy

- name: Check all HTML files
run: tidy --force-output yes --drop-empty-elements no *.html

0 comments on commit 029791e

Please sign in to comment.