From 01fca5ad543cdf0dd3995c0650a5297fd6c4c82e Mon Sep 17 00:00:00 2001 From: Aleksandar Kurtakov Date: Sun, 24 Aug 2025 10:18:04 +0300 Subject: [PATCH] Add htmlvalidator GHA --- .github/workflows/htmlvalidator.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/htmlvalidator.yml diff --git a/.github/workflows/htmlvalidator.yml b/.github/workflows/htmlvalidator.yml new file mode 100644 index 00000000000..c600b344af3 --- /dev/null +++ b/.github/workflows/htmlvalidator.yml @@ -0,0 +1,17 @@ +name: HTML Check + +on: + pull_request: + paths: + - '**.htm*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 # Requried will all actions + - name: Checks HTML5 + uses: Cyb3r-Jak3/html5validator-action@v8.0.0 + with: + root: /github/workspace/org.eclipse.pde.doc.user + blacklist: about.html notices.html \ No newline at end of file