chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /site (#1552) #59
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 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| # Runs every Monday at 08:00 UTC | |
| - cron: "0 8 * * 1" | |
| jobs: | |
| check_links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| # Use site/static as the root dir so lychee can resolve root-relative | |
| # paths (e.g. /img/...) used in Docusaurus site docs. Virtual category | |
| # pages (/docs/category/...) are excluded via .lycheeignore. | |
| args: --root-dir site/static ./**/*.md ./**/*.dart | |
| fail: true |