infra: add pr quality gate for client applications #233

Merged
talksik merged 5 commits from pr-quality-gate into main 2026-06-02 15:04:58 +00:00
3 changed files with 70 additions and 2 deletions
+68
View File
@@ -0,0 +1,68 @@
name: PR Quality Gate (client applications)
on:
pull_request:
paths:
- "js/mobile/**"
- "js/desktop/**"
branches: [ main ]
types: [ opened, synchronize, reopened ]
jobs:
mobile:
name: Lint & format check (mobile)
runs-on: ubuntu-latest
defaults:
run:
working-directory: js/mobile
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Run Code Linter
run: yarn lint
- name: Run Unit Tests
run: yarn format:check
desktop:
name: Lint & format check (desktop)
runs-on: ubuntu-latest
defaults:
run:
working-directory: js/desktop
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Run Code Linter
run: yarn lint
- name: Run Unit Tests
run: yarn format:check
@@ -412,7 +412,7 @@ export function ComposeOverlay({
setStepSync,
createChildParticle,
cancel,
handleQuotaError
handleQuotaError,
]);
// New stream mode: create stream + first child
@@ -28,7 +28,7 @@ export function TextReactionInput({
// NOTE: perform side effects here when opening
if (open) {
setValue('')
setValue('');
}
}