fix: Improve back navigation experience in idnis #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: HTML Tests | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'static/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'static/**' | |
jobs: | |
validate-html: | |
name: Validate HTML | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install HTML validator | |
run: | |
npm install html-validate | |
- name: Validate HTML | |
run: npm exec html-validate static/*.html static/doc/*.html |