Upgrade: Bump fdir from 6.4.2 to 6.4.3 #86
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: "Markdown Testing" | |
on: [pull_request] | |
jobs: | |
eslint: | |
name: Run ReadMe Markdown scanning | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Use Node.js v20.x (latest)" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
check-latest: true | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: npm prune | |
- name: Run markdownlint-cli2 | |
run: npm run test:markdown | |
continue-on-error: false |