* Revert "fix(build): corepackのバグの回避 (#15387)" This reverts commit 9c70a4e63130f85d191c5bc16d0a4be5cd1dece2. * deps: update pnpm to v10 * fix broken lockfile * update changelog * fix * fix * Revert "fix" This reverts commit 4abc6c194edc20989f5ec97d343307a4b8c9047d. * fix * fix * attempt to fix docker build * lint fixes * fix: revertしすぎた * detect pnpm version and install it * fix: そもそもpnpmを2回入れる必要がないかも * fix * refactor * fix * refactor: remove unnecessary arg * Update Dockerfile * update pnpm to v10.6.1 * Update Changelog * chore: use node to avoid installing jq
29 lines
610 B
YAML
29 lines
610 B
YAML
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/checkout@v4.2.2
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: true
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4.1.0
|
|
- uses: actions/setup-node@v4.2.0
|
|
with:
|
|
node-version-file: '.node-version'
|
|
cache: 'pnpm'
|
|
- run: pnpm i --frozen-lockfile
|
|
- run: cd locales && node verify.js
|