Skip to content

Youssef1313/markdown-links-verifier

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Markdown Links Verifier

Markdown Links Verifier is an GitHub Action that helps keeping links in Markdown files in a good state.

For version history, see CHANGES.md.

Get started

To get started, create a markdown-links-verifier.yml under .github/workflows/ directory with the following contents:

name: Markdown links verifier
on: [push, pull_request]

jobs:
  validate_links:
    name: Markdown links verifier
    runs-on: ubuntu-latest

    steps:
    - name: Checkout the repository
      uses: actions/checkout@v1

    - name: Validate links
      uses: Youssef1313/markdown-links-verifier@v0.1.3

Thanks