We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4257c4 commit d4bc8c8Copy full SHA for d4bc8c8
.github/workflows/build.yml
@@ -1,4 +1,4 @@
1
-name: Build
+name: Build, Validate, Package & Publish
2
3
on: [push, pull_request, workflow_dispatch]
4
@@ -82,3 +82,18 @@ jobs:
82
foreach ($file in (Get-ChildItem ${{ env.NuGetDirectory }} -Recurse -Include *.*nupkg)) {
83
dotnet nuget push $file --skip-duplicate --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
84
}
85
+
86
+ validate:
87
+ name: Validate HTML and CSS
88
+ runs-on: ubuntu-24.04
89
+ steps:
90
+ - name: Checkout HTML Renderer
91
+ uses: actions/checkout@v6
92
93
+ - name: Validate HTML
94
+ uses: anishathalye/proof-html@v2
95
+ with:
96
+ directory: ./Source
97
+ check_html: true
98
+ check_css: true
99
+ ignore_missing_alt: true
0 commit comments