Skip to content

chore(ci): update github actions and pin to commit hashes [skip cypress] #9798

chore(ci): update github actions and pin to commit hashes [skip cypress]

chore(ci): update github actions and pin to commit hashes [skip cypress] #9798

Workflow file for this run

name: i18n Check
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:
pull_request:
branches: ['main']
push:
branches: ['main']
jobs:
i18n-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: i18n compile
uses: ./.github/actions/build
with:
YARN_COMMAND: i18n
USE_NEXT_CACHE: 'false'
- name: check diff
run: |
if [[ -z $(git status -s) ]]
then
echo "i18n up to date"
else
echo "please run yarn i18n"
exit 1
exit
fi