Skip to content

Add blocking modal for when JavaScript is disabled in the browser #19

Add blocking modal for when JavaScript is disabled in the browser

Add blocking modal for when JavaScript is disabled in the browser #19

Workflow file for this run

name: 'Check HTML files with HTMLHint'
on:
pull_request:
paths:
- '**/*.html'
jobs:
htmlhint:
runs-on: ubuntu-latest
steps:
- name: Checkout latest
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install Dependencies
run: npm ci
- name: Run HTMLHint
run: npm run lint:html