Skip to content
Merged
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
17 changes: 17 additions & 0 deletions .github/workflows/htmlvalidator.yml
Original file line number Diff line number Diff line change
@@ -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
Comment on lines +12 to +14
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To improve security it would probably be good to pin all actions to the specific release commit, similar to how it's done in the releng.aggregator workflows.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is automated . I'll push it that way to check . If nothing kicks in to pin versions I'll do it manually.

with:
root: /github/workspace/org.eclipse.pde.doc.user
blacklist: about.html notices.html
Loading