fix(frontend): Play の再読込時に UI が以前の状態を引き継いでしまう問題を修正 (#15479) #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
paths: | |
- locales/** | |
- .github/workflows/locale.yml | |
pull_request: | |
paths: | |
- locales/** | |
- .github/workflows/locale.yml | |
env: | |
COREPACK_DEFAULT_TO_LATEST: 0 | |
jobs: | |
locale_verify: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4.1.0 | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- run: corepack enable | |
- run: pnpm i --frozen-lockfile | |
- run: cd locales && node verify.js |