Skip to content

introduce parent POM to centrally manage versions #857

introduce parent POM to centrally manage versions

introduce parent POM to centrally manage versions #857

Workflow file for this run

name: Check for broken links
on:
push:
schedule:
- cron: '0 5 * * SUN'
jobs:
broken-link-check:
runs-on: ubuntu-20.04
name: Check for broken links in README.md
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12.x
- run: |
npm install -g markdown-link-check
find . -type f -name '*.md' | xargs -L1 npx markdown-link-check -c .broken-link-config.json --quiet