Skip to content

chore(deps): bump react-i18next from 16.6.6 to 17.0.8 #133

chore(deps): bump react-i18next from 16.6.6 to 17.0.8

chore(deps): bump react-i18next from 16.6.6 to 17.0.8 #133

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093
with:
cache: true
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build shared package
run: pnpm run build:shared
- name: Run tests
run: pnpm run test
- name: Build web package
run: pnpm run build:web
- name: Upload web build artifacts
uses: actions/upload-artifact@v7
with:
name: web-build
path: packages/web/dist
retention-days: 7