Welcome to mirror list, hosted at ThFree Co, Russian Federation.

md-link-checker.yml « workflows « .github - github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88c2002cedfedf1362e1b404169623aa854c4b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
name: Check Markdown links

# Run action on pull request event
on: [pull_request]

jobs:
  markdown-link-check:
    runs-on: ubuntu-latest
    steps:
    # checkout to latest commit
    - uses: actions/checkout@v3
    # run markdown linter
    - uses: gaurav-nelson/github-action-markdown-link-check@1.0.14