Skip to content

Bump react-i18next from 15.5.3 to 15.6.1 #983

Bump react-i18next from 15.5.3 to 15.6.1

Bump react-i18next from 15.5.3 to 15.6.1 #983

Workflow file for this run

name: feature [push]
on:
pull_request:
jobs:
main:
name: Check
runs-on: ubuntu-latest
permissions:
contents: 'read'
actions: 'read'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 24
- uses: nrwl/nx-set-shas@v4
- run: npm ci
- run: npx nx report
- run: npx nx format:check --verbose --exclude=acf-configs
- run: npx nx affected --target=lint --parallel=3 --verbose --exclude=acf-configs
- run: npx nx affected --target=test --parallel=3 --verbose --coverage --exclude=acf-configs
- run: npx nx affected --target=typecheck --parallel=3 --verbose --exclude=acf-configs
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1.3.0
if: ${{ hashFiles('packages/**/**/test-output/vitest/coverage/lcov.info') != '' }}
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
# or
api-token: ${{ secrets.CODACY_API_TOKEN }}
coverage-reports: 'packages/**/**/test-output/vitest/coverage/lcov.info'
# or a comma-separated list for multiple reports
# coverage-reports: <PATH_TO_REPORT>, <PATH_TO_REPORT>