Revert deprecations of implicit _EQ
and @node
warnings.
#5048
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: "Lint Markdown" | |
on: | |
pull_request: | |
branches: | |
- dev | |
paths: | |
- "**/*.md" | |
jobs: | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
node-version: lts/* | |
- name: Install markdownlint | |
run: npm install -g markdownlint-cli | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: filter | |
with: | |
list-files: shell | |
filters: | | |
markdown: | |
- added|modified: '*.md' | |
- uses: xt0rted/markdownlint-problem-matcher@1a5fabfb577370cfdf5af944d418e4be3ea06f27 # v3.0.0 | |
- name: Run markdownlint | |
run: markdownlint --config ./.markdownlint.json ${{ steps.filter.outputs.markdown_files }} |