fully linked loading from mapping, config and dialogue JSON files #119
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
# Syntax: https://github.com/marketplace/actions/markdown-link-check | |
# Source: https://github.com/tcort/markdown-link-check | |
# Local install: npm install -g markdown-link-check | |
# Local check one: markdown-link-check ./README.md | |
# Local check many: find . -name \*.md -exec markdown-link-check {} \; | |
name: Check Markdown links | |
on: push | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' |