Skip to content

feat: force pin listening tab with fixed left section #5519

feat: force pin listening tab with fixed left section

feat: force pin listening tab with fixed left section #5519

Workflow file for this run

# https://github.com/tauri-apps/tauri-action/blob/3013cac/examples/test-build-only.yml
on:
workflow_dispatch:
push:
branches:
- main
paths:
- apps/desktop/**
- plugins/**
- crates/**
- Cargo.toml
- Cargo.lock
pull_request:
branches-ignore:
- "**/graphite-base/**"
paths:
- apps/desktop/**
- plugins/**
- crates/**
- Cargo.toml
- Cargo.lock
jobs:
optimize_ci:
runs-on: ubuntu-latest
outputs:
skip: ${{ steps.check_skip.outputs.skip }}
steps:
- uses: actions/checkout@v4
- id: check_skip
uses: ./.github/actions/graphite_optimizer
with:
graphite_token: ${{ secrets.GRAPHITE_TOKEN }}
desktop_ci:
needs: optimize_ci
if: needs.optimize_ci.outputs.skip == 'false'
strategy:
fail-fast: false
matrix:
include:
- platform: "macos"
runner: "depot-macos-14"
- platform: "linux"
runner: "depot-ubuntu-22.04-8"
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/pnpm_install
- uses: denoland/setup-deno@v2
- run: pnpm -F ui build
- run: pnpm -F desktop typecheck
- run: pnpm -F desktop test
- uses: ./.github/actions/install_desktop_deps
with:
target: ${{ matrix.platform }}
- uses: ./.github/actions/rust_install
with:
platform: ${{ matrix.platform }}
- run: cargo check -p desktop
- run: cargo test -p desktop
ci:
if: always()
needs: [optimize_ci, desktop_ci]
runs-on: ubuntu-latest
steps:
- run: exit 1
if: needs.optimize_ci.outputs.skip == 'false' && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled'))