Skip to content

Add Desktop RC distribution pipeline #616

Add Desktop RC distribution pipeline

Add Desktop RC distribution pipeline #616

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm typecheck
- run: pnpm lint
- run: pnpm build
- run: pnpm test --no-file-parallelism
- name: Security regression gate
if: matrix.node-version == 20
run: pnpm test:security
- name: Deterministic benchmark gate
if: matrix.node-version == 20
run: pnpm bench:ci