Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 6.9.0 to 6.9.1 (… #78

chore(deps-dev): bump @typescript-eslint/parser from 6.9.0 to 6.9.1 (…

chore(deps-dev): bump @typescript-eslint/parser from 6.9.0 to 6.9.1 (… #78

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@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "npm"
- run: npm ci
- run: npm run locale --update-locales
- run: |
CHANGES=$(git diff --name-only)
if [ -z "$CHANGES" ]
then
echo "No translations needed"
else
echo "The following files need translations:"
echo $CHANGES
exit 1
fi