Skip to content

fix(ci): run all release jobs on titan host runner #8

fix(ci): run all release jobs on titan host runner

fix(ci): run all release jobs on titan host runner #8

Workflow file for this run

name: Docs Link Check
on:
pull_request:
paths:
- 'docs/**'
- 'README.md'
- 'AGENTS.md'
- 'CLAUDE.md'
push:
paths:
- 'docs/**'
- 'README.md'
- 'AGENTS.md'
- 'CLAUDE.md'
jobs:
lychee:
runs-on: ubuntu-latest
container:
image: node:20-bookworm
steps:
- uses: actions/checkout@v4
- name: Run lychee (offline internal links)
uses: lycheeverse/lychee-action@v1.10.0
with:
args: >-
--no-progress --verbose --offline
'./docs/**/*.md' './README.md' './AGENTS.md' './CLAUDE.md'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}