mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
|
# This Link Checker is run on all documentation files once per week.
|
||
|
|
||
|
# references:
|
||
|
# - https://github.com/lycheeverse/lychee-action
|
||
|
# - https://github.com/lycheeverse/lychee
|
||
|
|
||
|
name: Link Checker
|
||
|
|
||
|
on:
|
||
|
# TODO remove before merging.
|
||
|
# just using the push and pull_request event in for testing only.
|
||
|
push:
|
||
|
branches:
|
||
|
- develop
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- develop
|
||
|
schedule:
|
||
|
# * is a special character in YAML so you have to quote this string
|
||
|
- cron: '30 8 * * 5'
|
||
|
|
||
|
jobs:
|
||
|
linkChecker:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Restore lychee cache
|
||
|
uses: actions/cache@v3
|
||
|
with:
|
||
|
path: .lycheecache
|
||
|
key: cache-lychee-${{ github.sha }}
|
||
|
restore-keys: cache-lychee-
|
||
|
|
||
|
- name: Link Checker
|
||
|
uses: lycheeverse/lychee-action@v1.5.2
|
||
|
with:
|
||
|
args: --verbose --no-progress --cache --max-cache-age 1d packages/mermaid/src/docs/**/*.md README.md README.zh-CN.md
|
||
|
fail: true
|
||
|
jobSummary: true
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|