Updates installation and configuration documentation for GA release (… #31
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
name: markdown-link-check | |
on: | |
push: | |
branches: [ 'main*' ] | |
paths: | |
- '**.md' | |
pull_request: | |
branches: [ 'main*' ] | |
paths: | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v4 | |
- name: install markdown-link-check | |
run: sudo npm install -g markdown-link-check | |
- name: run markdown-link-check | |
run: "find . -name '*.md' -print0 | xargs -0 -n1 markdown-link-check --config .markdown_link_check_config.json" |