Update aws-java-sdk monorepo to v1.12.766 #1140
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 for broken links | |
on: | |
push: | |
schedule: | |
- cron: '0 5 * * SUN' | |
jobs: | |
broken-link-check: | |
runs-on: ubuntu-22.04 | |
name: Check for broken links in README.md | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: | | |
npm install -g markdown-link-check@3.10.3 | |
find . -type f -name '*.md' | xargs -L1 npx markdown-link-check -c .broken-link-config.json --quiet |