We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aad02e1 commit d2f3b2aCopy full SHA for d2f3b2a
.github/workflows/website.yml
@@ -35,3 +35,16 @@ jobs:
35
run: |
36
cd website
37
npm run build
38
+
39
+ - name: Run HTMLHint (SARIF)
40
+ run: |
41
+ cd website
42
+ npm run htmlhint-sarif || true
43
+ # Continue even if HTMLHint finds issues
44
45
+ - name: Upload SARIF file
46
+ uses: github/codeql-action/upload-sarif@v3
47
+ with:
48
+ sarif_file: website/htmlhint.sarif
49
+ category: HTMLHint
50
+ if: always()
website/package.json
@@ -20,6 +20,7 @@
20
"start": "astro dev",
21
"htmlhint": "npx htmlhint .",
22
"htmlhint-report": "npx htmlhint . --format html",
23
+ "htmlhint-sarif": "npx htmlhint . --format sarif",
24
"pa11y-ci": "npx pa11y-ci https://htmlhint.com/"
25
},
26
"dependencies": {
0 commit comments