Skip to content

chore(deps): bump actions/checkout from 3.0.2 to 5.0.0 #9395

chore(deps): bump actions/checkout from 3.0.2 to 5.0.0

chore(deps): bump actions/checkout from 3.0.2 to 5.0.0 #9395

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- 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