Update lint.yml

https://github.com/misskey-dev/misskey/issues/16255
This commit is contained in:
syuilo 2025-11-10 18:43:03 +09:00
parent 5c212c996a
commit 30d87d5532
1 changed files with 3 additions and 2 deletions

View File

@ -96,6 +96,7 @@ jobs:
matrix: matrix:
workspace: workspace:
- backend - backend
- frontend
- sw - sw
- misskey-js - misskey-js
steps: steps:
@ -111,7 +112,7 @@ jobs:
cache: 'pnpm' cache: 'pnpm'
- run: pnpm i --frozen-lockfile - run: pnpm i --frozen-lockfile
- run: pnpm --filter misskey-js run build - run: pnpm --filter misskey-js run build
if: ${{ matrix.workspace == 'backend' || matrix.workspace == 'sw' }} if: ${{ matrix.workspace == 'backend' || matrix.workspace == 'frontend' || matrix.workspace == 'sw' }}
- run: pnpm --filter misskey-reversi run build - run: pnpm --filter misskey-reversi run build
if: ${{ matrix.workspace == 'backend' }} if: ${{ matrix.workspace == 'backend' || matrix.workspace == 'frontend' }}
- run: pnpm --filter ${{ matrix.workspace }} run typecheck - run: pnpm --filter ${{ matrix.workspace }} run typecheck