Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/validate-markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
- name: Lint other files
run: npx --yes markdownlint-cli2 *.md

# workaround for https://github.com/UmbrellaDocs/action-linkspector/issues/62
- name: Install Chrome
run: |
sudo apt-get update
sudo apt-get install -y google-chrome-stable
echo "PUPPETEER_SKIP_DOWNLOAD=true" >> $GITHUB_ENV
echo "PUPPETEER_EXECUTABLE_PATH=/usr/bin/google-chrome" >> $GITHUB_ENV
- name: Check links in markdown files
uses: umbrelladocs/action-linkspector@v1
with:
Expand Down
Loading