We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfb4d6c commit 3fa3cc3Copy full SHA for 3fa3cc3
1 file changed
.github/workflows/validate_and_fix_markdown.yml
@@ -21,13 +21,13 @@ jobs:
21
with:
22
fetch-depth: 0
23
24
- - name: Set up Python
25
- uses: actions/setup-python@v4
+ - name: Set up Node.js
+ uses: actions/setup-node@v3
26
27
- python-version: '3.x'
+ node-version: '16'
28
29
- name: Install Markdown Linter
30
- run: pip install markdownlint-cli
+ run: npm install -g markdownlint-cli
31
32
- name: Lint and Fix Markdown files
33
run: markdownlint '**/*.md' --fix
0 commit comments