Skip to content

build(deps): bump react-i18next from 16.2.1 to 16.2.4 #4056

build(deps): bump react-i18next from 16.2.1 to 16.2.4

build(deps): bump react-i18next from 16.2.1 to 16.2.4 #4056

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
permissions:
contents: read
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
permissions:
contents: write # for Git to git push
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Harden Runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: audit
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Use Node.js 20.x
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: 20.x
- name: Run NPM CI
run: npm install
- name: Run Lint
run: npm run lint
- name: Run Test
run: npm run test
- name: Run Coverage
run: npm run coverage
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
name: Upload Coverage Results
with:
directory: ./coverage/
- name: Run Build Dev
run: npm run build
- name: Run Build Externals
run: npm run build-ext
- run: mv junit.xml ui-toolkit-react-unit.xml
- name: Upload JEST Results
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: ui-toolkit-react-unit
path: ui-toolkit-react-unit.xml