Update .github/workflows/frontend-ci-bucketed.yml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Alexa Amundson
2025-11-17 23:58:43 -06:00
committed by GitHub
parent 4178391dca
commit f46ed3a9e8

View File

@@ -23,20 +23,20 @@ jobs:
- uses: actions/checkout@v4
- name: Validate HTML
continue-on-error: true
run: |
# Install html5validator
pip install html5validator
# Validate backend/static/index.html
if [ -f backend/static/index.html ]; then
html5validator --root backend/static/ || echo "HTML validation issues found"
html5validator --root backend/static/
fi
# Validate blackroad-os/index.html
if [ -f blackroad-os/index.html ]; then
html5validator --root blackroad-os/ || echo "HTML validation issues found"
html5validator --root blackroad-os/
fi
- name: Check JavaScript syntax
run: |
# Install Node.js for syntax checking