Bump the kiota-dependencies group with 8 updates (#7679) #4625
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: Check Translations | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-translations: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22.x | |
| - name: Run translation check | |
| run: ./scripts/check-translations.ps1 | |
| shell: pwsh | |
| - name: Upload untranslated strings | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: untranslated-strings | |
| path: ./untranslated_strings.html |