Add VI and TH Catchup translations from 25.06 to 25.11 into the 25.12 branch by 2025-11-14 11/3/2025 path: lang/ #91
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: translation | |
| on: | |
| pull_request: | |
| paths: | |
| - 'lang/**' | |
| jobs: | |
| format: | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: Brightspace/third-party-actions@actions/checkout | |
| - uses: Brightspace/third-party-actions@actions/setup-node | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run formatter | |
| uses: BrightspaceUI/actions/t9n-format@main | |
| with: | |
| t9n-source: en | |
| t9n-path: ./lang/ | |
| t9n-newlines: true | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |