Merge pull request #444 from libraries/remove_a #159
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: Local Link Checker | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
jobs: | |
local-link-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: run checker | |
run: .github/scripts/local-link-checker.sh | |
- name: info for fixing | |
if: ${{ failure() }} | |
run: echo "::error::Broken local links found, please use ./.github/scripts/local-link-checker.sh to check locally" |