chore: Update documentation for installing EFA device plugin to use o… #1653
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: Check Markdown links | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**/*.md" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "**/*.md" | |
permissions: | |
contents: read | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@v2 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '16.x' | |
- name: install markdown-link-check | |
run: npm install -g [email protected] | |
- name: markdown-link-check version | |
run: npm list -g markdown-link-check | |
- name: Run markdown-link-check on MD files | |
run: find docs -name "*.md" | xargs -n 1 markdown-link-check -q -c .github/workflows/linkcheck.json |