fix: update relative path for global stylesheet reference in legal pages #88
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: Link Checker | |
| on: | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: '0 0 * * 0' # Runs every Sunday at midnight | |
| workflow_dispatch: | |
| jobs: | |
| check-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Lychee Link Checker | |
| uses: lycheeverse/lychee-action@v1 | |
| with: | |
| args: '**/*.md **/*.mdx **/*.astro' | |
| # For more configuration options, see https://github.com/lycheeverse/lychee-action |