fix(l10n): translations update from Hosted Weblate #816
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| generate: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Atsumi3/[email protected] | |
| - uses: bluefireteam/melos-action@v2 | |
| - run: melos generate | |
| - run: melos gen-l10n | |
| - name: Check for outdated generated files | |
| if: github.event_name == 'pull_request' | |
| run: ./.github/scripts/check-outdated-files.sh | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Atsumi3/[email protected] | |
| - uses: bluefireteam/melos-action@v3 | |
| - run: sudo apt update | |
| - run: sudo apt install -y clang cmake curl libgtk-3-dev ninja-build pkg-config unzip xvfb | |
| env: | |
| DEBIAN_FRONTEND: noninteractive | |
| - run: melos build | |
| analyze: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Atsumi3/[email protected] | |
| - uses: bluefireteam/melos-action@v2 | |
| - run: melos analyze --fatal-infos | |
| format: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Atsumi3/[email protected] | |
| - uses: bluefireteam/melos-action@v3 | |
| - run: melos format:exclude | |
| publish: | |
| name: Dry-run publish | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Atsumi3/[email protected] | |
| - uses: bluefireteam/melos-action@v3 | |
| # Remove ubuntu_test from ignore list once | |
| - run: melos exec --no-private --ignore ubuntu_test -- flutter pub publish --dry-run | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Atsumi3/[email protected] | |
| - uses: bluefireteam/melos-action@v3 | |
| - run: sudo apt update && sudo apt install -y lcov | |
| - run: melos coverage | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} |