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 c4257c4 commit 4fdfd3bCopy full SHA for 4fdfd3b
.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
@@ -51,6 +51,13 @@ jobs:
51
- name: Build
52
run: dotnet build Source/HtmlRenderer.sln --configuration Release --no-restore
53
54
+ - name: Validate HTML
55
+ uses: anishathalye/proof-html@v2
56
+ with:
57
+ directory: ./Source
58
+ check_html: true
59
+ check_css: true
60
+
61
- name: Create HtmlRenderer.Core NuGet package
62
run: dotnet pack Source/HtmlRenderer/HtmlRenderer.csproj --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg --no-build --verbosity normal --output ${{ env.NuGetDirectory }}
63
0 commit comments