Skip to content

chore(deps-dev): bump nock from 13.3.6 to 13.3.8 (#599) #77

chore(deps-dev): bump nock from 13.3.6 to 13.3.8 (#599)

chore(deps-dev): bump nock from 13.3.6 to 13.3.8 (#599) #77

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