docs: add info on the wait.yml file in app component folder (close #4… #952
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 Links Validation | |
on: [push, workflow_dispatch] | |
jobs: | |
markdown-link-check: | |
strategy: | |
matrix: | |
file-extension: [.mdx, .md] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/[email protected] | |
- name: Validate Links Markdown ${{ matrix.file-extension }} files | |
if: always() | |
uses: gaurav-nelson/[email protected] | |
with: | |
config-file: '.markdownlinkcheck.json' | |
use-quiet-mode: 'yes' | |
file-extension: ${{ matrix.file-extension }} |