SDK config copyedits: support copy-code for examples, and drop superfluous quotes #13578
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: i18n | |
| on: | |
| merge_group: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-i18n: | |
| name: I18N check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 # all | |
| - name: Any files missing hash key? | |
| run: | | |
| scripts/check-i18n.sh -n -x -v | |
| .github/scripts/check-i18n-helper.sh | |
| - name: Any files with invalid hash keys? | |
| run: scripts/check-i18n.sh -v | |
| - name: Drifted status needs updating? | |
| run: | | |
| scripts/check-i18n.sh -D | |
| # npm run _diff:fail |