mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-02 05:03:44 +08:00
20 lines
621 B
YAML
20 lines
621 B
YAML
name: Markdown Links Check
|
|
# runs every monday at 9 am
|
|
on:
|
|
schedule:
|
|
- cron: '0 9 * * 1'
|
|
|
|
jobs:
|
|
check-links:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
# checks all markdown files from important folders including all subfolders
|
|
with:
|
|
# only show errors that occur instead of successful links + errors
|
|
use-quiet-mode: 'yes'
|
|
# output full HTTP info for broken links
|
|
use-verbose-mode: 'yes'
|
|
config-file: '.github/workflows/markdown-link-check-config.json'
|