Skip to content

Bump react-i18next from 15.0.0 to 15.0.1 #141

Bump react-i18next from 15.0.0 to 15.0.1

Bump react-i18next from 15.0.0 to 15.0.1 #141

Workflow file for this run

---
name: Linting
on: # yamllint disable-line rule:truthy
pull_request: {}
push:
branches:
- main
jobs:
paths-filter:
name: Paths filter
runs-on: ubuntu-latest
timeout-minutes: 5
outputs:
trigger-js-lint: "${{ steps.metadata.outputs.trigger-js-lint }}"
steps:
- name: Filter changed files
id: filter
if: ${{ github.event_name == 'pull_request' }}
uses: dorny/paths-filter@v3
with:
filters: |
trigger-js-lint:
- '.github/workflows/linting.yml'
- 'src/**'
- 'biome.json'
- name: Prepare metadata
id: metadata
run: |
if [ "${{ github.event_name }}" = "push" ]; then
trigger="true"
else
trigger="${{ steps.filter.outputs.trigger-js-lint }}"
fi
echo "trigger-js-lint=${trigger}" >> "$GITHUB_OUTPUT"
js-lint:
name: JS Lint
needs: [paths-filter]
if: ${{ needs.paths-filter.outputs.trigger-js-lint == 'true' }}
uses: fabasoad/reusable-workflows/.github/workflows/wf-js-lint.yml@main
pre-commit:
name: Pre-commit
uses: fabasoad/reusable-workflows/.github/workflows/wf-pre-commit.yml@main
with:
skip-hooks: "audit, build, lint, test"