[docs] Fix call to emit_deprecation_if_present using self #1366
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: "CI - Lint for Pull Requests" | |
on: | |
pull_request: | |
paths: | |
- 'docs/**/*.md' | |
- 'general/**/*.md' | |
- .markdownlint-cli2.cjs | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: "16" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint markdown files | |
run: yarn mdlint-all |