Skip to content

chore(release): prepare v0.2.0 — Phase 2: Keys + Translations + ICU (T210) #130

chore(release): prepare v0.2.0 — Phase 2: Keys + Translations + ICU (T210)

chore(release): prepare v0.2.0 — Phase 2: Keys + Translations + ICU (T210) #130

Workflow file for this run

name: link-checker
on:
push:
branches: [master]
paths:
- '**/*.md'
- 'docs/**'
- '.github/workflows/link-checker.yml'
pull_request:
paths:
- '**/*.md'
- 'docs/**'
- '.github/workflows/link-checker.yml'
schedule:
- cron: '13 6 * * 1' # every Monday 06:13 UTC
concurrency:
group: link-checker-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
issues: write
jobs:
lychee:
name: lychee
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Link check
uses: lycheeverse/lychee-action@v2
with:
args: >-
--config lychee.toml
'./**/*.md' 'docs/**/*.html'
fail: true
format: markdown
output: ./lychee-report.md
- name: Upload report
if: always()
uses: actions/upload-artifact@v4
with:
name: lychee-report
path: ./lychee-report.md
retention-days: 14