Merge remote-tracking branch 'origin/main'
Some checks are pending
Validate HTML site / build (push) Waiting to run

This commit is contained in:
Stijn Bannink 2024-04-15 19:37:19 +02:00
commit d49f3dec2d
Signed by: SBDeveloper
GPG key ID: B730712F2C3A9D7A

View file

@ -0,0 +1,26 @@
name: Validate HTML site
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install htmlhint --save-dev
- name: Check HTML syntax
run: npx htmlhint "**/*.html"
continue-on-error: true