Skip to content

Commit

Permalink
Add github action to find HTTP resources returning a 404 error code
Browse files Browse the repository at this point in the history
  • Loading branch information
nehhen committed Mar 28, 2024
1 parent 3995bf5 commit 4ba24aa
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Markdown lint
# https://github.com/marketplace/actions/404-links
on:
push:
branches: [ master ]
pull_request:
types: [assigned, opened, synchronize, reopened]

jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: 'restqa-404-links'
uses: restqa/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4ba24aa

Please sign in to comment.