Skip to content

⬆️ Updates node to v21 #5265

⬆️ Updates node to v21

⬆️ Updates node to v21 #5265

Workflow file for this run

name: Check for broken links
on: [ push, pull_request ]
jobs:
broken-link-check:
runs-on: ubuntu-latest
name: Check for broken links in README.md
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# Disabling shallow clone for improving relevancy of SonarQube reporting
fetch-depth: 0
- name: Prepare git
run: |
git config --global core.autocrlf false
git config --global core.ignorecase false
git config --global help.autocorrect 1
git config --global core.fileMode false
- name: Read Node version from .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- uses: actions/setup-node@v2.1.4
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}
- run: npm install -g markdown-link-check
- run: find . -name \*.md -exec markdown-link-check -c .broken-link-config.json {} \;