We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c36f0f commit e3467baCopy full SHA for e3467ba
1 file changed
.github/workflows/Tests.yml
@@ -33,6 +33,14 @@ jobs:
33
- name: Run NovaModuleTools CI test and coverage workflow
34
run: ./scripts/build/ci/Invoke-NovaModuleToolsCI.ps1 -OutputDirectory ./artifacts
35
36
+ - name: Validate repository changelog with Test-KeepAChangelogFile
37
+ run: |
38
+ Import-Module ./dist/KeepAChangelog/KeepAChangelog.psd1 -Force
39
+ $result = Test-KeepAChangelogFile -Path ./CHANGELOG.md
40
+ if (-not $result.IsValid) {
41
+ throw ($result.Errors -join [Environment]::NewLine)
42
+ }
43
+
44
- name: Upload CI artifacts
45
if: always()
46
uses: actions/upload-artifact@v4
0 commit comments