ノートを畳む条件を仮想行数、旧式、実際の表示の大きさから選べるようにする #625
Workflow file for this run
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 | |
jobs: | |
locale_verify: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- run: corepack enable | |
- run: pnpm i --frozen-lockfile | |
- run: cd locales && node verify.js |