Skip to content

Addet footer updated language #25

Addet footer updated language

Addet footer updated language #25

Workflow file for this run

name: HTML Validation
on:
push:
branches:
- main
- develop
paths:
- '**.html'
- '**.php'
pull_request:
paths:
- '**.html'
- '**.php'
workflow_dispatch:
jobs:
validate-html:
name: Validate HTML Structure
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run HTML validation
uses: anishathalye/proof-html@v1.1.0
with:
directory: ./public
error_exit_code: 1
- name: Upload results
if: always()
uses: actions/upload-artifact@v4
with:
name: html-validation-report
path: proof-html-report.json
retention-days: 30