Switch to lychee for link checks #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Uses: https://github.com/marketplace/actions/markdownlint-cli | |
name: markdownlint check | |
on: | |
push: | |
paths: | |
- '**.md' | |
workflow_dispatch: | |
inputs: | |
message: | |
description: Message to display in job summary | |
required: false | |
type: string | |
jobs: | |
markdownlint: | |
name: call-markdownlint-workflow | |
uses: Andy4495/.github/.github/workflows/markdownlint.yml@main | |
with: | |
message: ${{ inputs.message }} |