Markdown Check #308
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened] | |
branches: | |
- "main" | |
pull_request_review: | |
types: [submitted] | |
push: | |
branches: | |
- "main" | |
- "*Baseline*" | |
paths: | |
- "baselines/*.md" | |
name: Markdown Check | |
jobs: | |
Run-Markdown-Check: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: powershell | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repo code | |
uses: actions/checkout@v3 | |
- name: Execute markdown checks | |
run: | | |
$PSVersionTable | |
Invoke-Pester Testing\Unit\PowerShell\CreateReport -Output Detailed |