Skip to content

Commit 4ba24aa

Browse files
committedMar 28, 2024
Add github action to find HTTP resources returning a 404 error code
1 parent 3995bf5 commit 4ba24aa

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎.github/workflows/markdown-lint.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Markdown lint
2+
# https://github.com/marketplace/actions/404-links
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
types: [assigned, opened, synchronize, reopened]
8+
9+
jobs:
10+
check-links:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: 'restqa-404-links'
15+
uses: restqa/404-links@3.1.4
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)