Upgrade @objectstack/spec to v0.4.1 and migrate to System protocol namespace #60
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |