ci: add link check and bilingual-sync workflow #1
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| link-check: | |
| name: Check links | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Check links | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: --config .lychee.toml --no-progress . | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| jobSummary: true | |
| bilingual-sync: | |
| name: Check bilingual file pairs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Check en/de sync | |
| run: bash scripts/check-bilingual-sync.sh |