i18n(fr): update start-here files
#439
Workflow file for this run
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: CI - Link Validator | |
| on: | |
| pull_request: | |
| paths: | |
| - "src/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-links: | |
| name: Run Starlight Link Check | |
| runs-on: ubuntu-latest | |
| env: | |
| CHECK_LINKS: true | |
| NODE_OPTIONS: "--max_old_space_size=4096" | |
| PUBLIC_GITHUB_TOKEN: ${{ secrets.STUDIOCMS_SERVICE_TOKEN }} | |
| steps: | |
| - name: Check out code using Git | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Install Tools & Dependencies | |
| uses: withstudiocms/automations/.github/actions/install@main | |
| - name: Run Link Check | |
| run: pnpm ci:build | |
| # Link validation errors will cause the build to fail automatically |