fix(desktop): Reveal scrollbar in settings dialog panels of desktop app (such that keyboard navigation and mice with out scroll functionality work) #3932
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: storybook | |
| on: | |
| push: | |
| branches: [dev] | |
| paths: | |
| - ".github/workflows/storybook.yml" | |
| - "package.json" | |
| - "bun.lock" | |
| - "packages/storybook/**" | |
| - "packages/ui/**" | |
| - "packages/session-ui/**" | |
| pull_request: | |
| branches: [dev] | |
| paths: | |
| - ".github/workflows/storybook.yml" | |
| - "package.json" | |
| - "bun.lock" | |
| - "packages/storybook/**" | |
| - "packages/ui/**" | |
| - "packages/session-ui/**" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: storybook build | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Setup Bun | |
| uses: ./.github/actions/setup-bun | |
| - name: Build Storybook | |
| run: bun --cwd packages/storybook build |