Skip to content

Commit

Permalink
Create link-checker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
langermank committed Oct 19, 2023
1 parent 6e57649 commit 8d95c78
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Broken link check
on: [push]

jobs:
broken_link_checker_job:
runs-on: ubuntu-latest
name: Check for broken links
steps:
- name: Check for broken links
id: link-report
uses: celinekurpershoek/link-checker@v1.0.2
with:
url: "https://primer.style"
- name: Get the result
run: echo "${{steps.link-report.outputs.result}}"

0 comments on commit 8d95c78

Please sign in to comment.