Update How_to_Install_Firmware_for_Mediatek_based_USB_WiFi_adapters.md #81
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 CI | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- .github/workflows/markdown-ci.yml | |
- '**.md' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- .github/workflows/markdown-ci.yml | |
- '**.md' | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run linkspector | |
uses: umbrelladocs/action-linkspector@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
fail_on_error: true |