Skip to content

chore(deps): bump zustand from 5.0.8 to 5.0.9 in /client (#1715) #738

chore(deps): bump zustand from 5.0.8 to 5.0.9 in /client (#1715)

chore(deps): bump zustand from 5.0.8 to 5.0.9 in /client (#1715) #738

Workflow file for this run

name: Translation Check
on:
workflow_dispatch:
push:
branches:
- main
jobs:
check-translations:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: "npm"
- run: npm ci
- run: npm run locale --update-locales
- run: |
CHANGES=$(git diff --name-only -- "*.nls.*" "l10n/*")
if [ -z "$CHANGES" ]
then
echo "No translations needed"
else
echo "The following files need translations:"
echo $CHANGES
exit 1
fi