chore(deps): bump connectivity_plus from 7.1.1 to 7.2.0 in /packages/smooth_app #3724
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: 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@v7 | |
| - 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 |