File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 1- name : Build
1+ name : Build, Validate, Package & Publish
22
33on : [push, pull_request, workflow_dispatch]
44
8282 foreach ($file in (Get-ChildItem ${{ env.NuGetDirectory }} -Recurse -Include *.*nupkg)) {
8383 dotnet nuget push $file --skip-duplicate --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
8484 }
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+ validator_ignore : ' Use CSS instead|An “img” element must have an “alt” attribute'
You can’t perform that action at this time.
0 commit comments