Fail fast on errors in powershell TTP steps #138
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
--- | |
name: markdownlint | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
markdownlint: | |
name: run markdownlint against this codebase | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Git repository | |
uses: actions/checkout@v4 | |
- name: Run markdownlint | |
uses: DavidAnson/markdownlint-cli2-action@v13 | |
with: | |
globs: '**/*.md' |