[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml from 9a55ea0e91e397758d63be2c553816a159aca271 to 7d717a49d570577936361c14de38bf61271aa274 #11914
Workflow file for this run
This file contains hidden or 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 | |
| permissions: | |
| contents: read | |
| # run even on changes without markdown changes, so that we can | |
| # make it in GitHub a required check for PR's | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: 16.x | |
| - name: Run Markdownlint | |
| run: | | |
| echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json" | |
| npm i -g [email protected] | |
| markdownlint "docs/**/*.md" |