This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
fix: Insert content as text in ABNF (#175) #66
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: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
validate-html: | |
name: Validate HTML | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install HTML validator | |
run: | |
npm install html-validate | |
- name: Validate HTML | |
run: npm exec html-validate www/*.html www/doc/*.html |