fix(onboarding): prevent welcome screen text overflow in localized languages #1945
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 for one {} in .arb Files | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| check-empty-braces: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Search for empty braces | |
| run: | | |
| # Find all .arb files and search for '{}' | |
| if grep -r 'one {}\\|one{}' --include="*.arb" .; then | |
| echo "Error: Found empty 'one {}' in .arb files!" | |
| exit 1 | |
| else | |
| echo "No empty 'one {}' found in .arb files." | |
| fi |