From 4cbe8e3be752bb712a891902bb2de5c7ead2162c Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Tue, 25 Jul 2023 18:53:48 -0400 Subject: [PATCH] chore(ci): add link checker --- .github/workflows/links.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/links.yml diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml new file mode 100644 index 00000000..b343246a --- /dev/null +++ b/.github/workflows/links.yml @@ -0,0 +1,15 @@ +name: Link Checker + +on: + pull_request: + +jobs: + linkChecker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Link Checker + uses: lycheeverse/lychee-action@v1.8.0 + with: + fail: true