Skip to content

Create lint.yml

Create lint.yml #2

Workflow file for this run

name: Lint HTML
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install HTMLHint
run: npm install htmlhint -g
- name: Run HTMLHint
run: htmlhint "**/*.html"