Skip to content

Update the node-gyp alpine docs section to account for Node 18 in Alpine 3.20 python issue #92

Update the node-gyp alpine docs section to account for Node 18 in Alpine 3.20 python issue

Update the node-gyp alpine docs section to account for Node 18 in Alpine 3.20 python issue #92

name: Check Markdown links
on:
pull_request:
paths:
- "**/*.md"
- "markdown_link_check_config.json"
permissions:
contents: read
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install markdown-link-check
run: npm i -g [email protected]
- name: Run markdown-link-check on MD files
run: find . -name "*.md" | xargs -n 1 markdown-link-check -c markdown_link_check_config.json -q