Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tidy action #58

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
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
26 changes: 14 additions & 12 deletions .github/workflows/tidy_html5.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
---
name: html_tidy
name: html_tidy

on: push
on:
pull_request:
branches:
- master

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

- name: Check all HTML files
run: tidy -config tidy_config.txt *.html
jobs:
html_tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo apt install tidy

- name: Check all HTML files
run: |
tidy -config tidy.config *.html
1 change: 1 addition & 0 deletions privacidad.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ <h2 class="text-center">Contacto</h2>
</p>
</div>
</div>
</div>
</section>

<footer class="space--sm footer-1 text-center-xs bg--primary ">
Expand Down
File renamed without changes.
Loading