This repository was archived by the owner on Aug 30, 2025. It is now read-only.
build(deps): bump xunit.runner.visualstudio from 2.4.5 to 3.0.0 #515
Workflow file for this run
This file contains hidden or 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 Markdown links' | |
| on: | |
| workflow_dispatch: # To can dispatch manually | |
| # Schedule to run every week on Sunday at 00:00 UTC | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| pull_request: | |
| types: [opened, reopened, edited, synchronize] | |
| branches: | |
| - main | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4.2.2 | |
| - name: 'Readme analysis' | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| use-verbose-mode: 'yes' | |
| base-branch: 'main' | |
| config-file: '.github/workflows/markdown-link-check.json' |