This repository has been archived on 2024-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
VPModelFileTool/.gitea/workflows/validate.yml
Stijn Bannink 1719067030
Some checks are pending
Validate HTML site / build (push) Waiting to run
Add .gitea/workflows/validate.yml
2024-04-14 19:19:27 +00:00

26 lines
454 B
YAML

name: Validate HTML site
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
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