Skip to content

Commit

Permalink
add workflow to check broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
nikmel2803 committed Jul 15, 2024
1 parent 4e67922 commit 0ab5216
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check-links.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check broken links

on:
deployment:
# push:
# branches:
# - main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install dependencies
run: npm install -g linkinator

- name: Check links
run: linkinator https://docs.pimlico.io -r --format csv > links-report.csv

0 comments on commit 0ab5216

Please sign in to comment.