Updating Arabic Translations 2605 by 2026-04-30 4/8/2026 name: core #117
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/setup-node@main | |
| 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 }} |