mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
* refactor: localesをworkspace管理下のパッケージに * fix copilot review * move * move * rename * fix ci * revert unwanted indent changes * fix * fix * fix * fix * 間違えてコミットしていたのを戻す * 不要 * 追加漏れ * ymlの場所だけ戻す * localesの位置を戻したのでこの差分は不要 * 内容的にlocalesにある方が正しい * i18nパッケージ用のREADME.mdを用意 * fix locale.yml * fix locale.yml --------- Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
34 lines
781 B
YAML
34 lines
781 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- packages/i18n/**
|
|
- locales/**
|
|
- .github/workflows/locale.yml
|
|
pull_request:
|
|
paths:
|
|
- packages/i18n/**
|
|
- locales/**
|
|
- .github/workflows/locale.yml
|
|
jobs:
|
|
locale_verify:
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: true
|
|
steps:
|
|
- uses: actions/checkout@v4.3.0
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: true
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4.2.0
|
|
- uses: actions/setup-node@v4.4.0
|
|
with:
|
|
node-version-file: ".node-version"
|
|
cache: "pnpm"
|
|
- run: pnpm i --frozen-lockfile
|
|
- run: pnpm --filter i18n build
|
|
- name: Verify Locales
|
|
working-directory: ./packages/i18n
|
|
run: pnpm run verify
|