Merge pull request #38 from flavienbwk/f/audiobook #8
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 checks | |
on: | |
push: | |
paths: | |
- 'fra/README.md' | |
- 'eng/README.md' | |
pull_request: | |
paths: | |
- 'fra/README.md' | |
- 'eng/README.md' | |
jobs: | |
# Only on main or PR to main | |
check-404-links: | |
name: Check for dead links | |
if: github.ref == 'refs/heads/main' || (github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'main') | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: 404 Links | |
uses: atalent-labs/[email protected] |