Skip to content

Upgrade @objectstack/spec to v0.4.1 and migrate to System protocol namespace #60

Upgrade @objectstack/spec to v0.4.1 and migrate to System protocol namespace

Upgrade @objectstack/spec to v0.4.1 and migrate to System protocol namespace #60

Workflow file for this run

name: "Check Links"
on:
push:
branches:
- main
paths:
- '**/*.md'
- 'apps/site/content/**/*.mdx'
pull_request:
paths:
- '**/*.md'
- 'apps/site/content/**/*.mdx'
schedule:
# Run weekly on Sundays at 00:00 UTC
- cron: '0 0 * * 0'
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Check links in Markdown files
uses: lycheeverse/lychee-action@v2
with:
args: --verbose --no-progress '**/*.md' 'apps/site/content/**/*.mdx'
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}