A GitHub action to test for broken links on markdown files
name: Sample Workflow
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check URLs
uses: paramt/url-checker@master
with:
files: "README.md,SUPPORT.md"
files
: A comma-separated list of files to check. Defaults to README.mdblacklist
: A comma-separated list of URLs to ignore