chore(deps-dev): bump the storybook group across 1 directory with 6 updates #30046
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: Lint Reference Files | |
| permissions: {} | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| l10n-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python 3 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| cache: 'pip' | |
| - name: Install Python dependencies | |
| run: | | |
| pip install -r .github/requirements.txt | |
| - name: Lint reference strings | |
| run: | | |
| moz-fluent-lint ./locales/en/ --config .github/linter_config.yml | |
| - name: Lint pending strings | |
| if: always() # This step should run even if the previous one fails | |
| run: | | |
| moz-fluent-lint ./locales-pending/ --config .github/linter_config.yml |