adds 3 fake md show #1
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: Check Links in New Markdown Files | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- '**/*.md' | |
jobs: | |
check-new-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Ensure the entire history is fetched | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.2 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check for broken links in new MD files | |
run: node merging-show-validation.js |