infra: add pr quality gate for client applications (#233)
* add gh action for quality gate * test quality gate * fix job * rename gh action jobs * format
This commit was merged in pull request #233.
This commit is contained in:
@@ -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,
|
setStepSync,
|
||||||
createChildParticle,
|
createChildParticle,
|
||||||
cancel,
|
cancel,
|
||||||
handleQuotaError
|
handleQuotaError,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// New stream mode: create stream + first child
|
// New stream mode: create stream + first child
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ export function TextReactionInput({
|
|||||||
|
|
||||||
// NOTE: perform side effects here when opening
|
// NOTE: perform side effects here when opening
|
||||||
if (open) {
|
if (open) {
|
||||||
setValue('')
|
setValue('');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user