Skip to content

fix(ui): Properly fix Ctrl+I sidebar toggle with CustomEvent architec… #2

fix(ui): Properly fix Ctrl+I sidebar toggle with CustomEvent architec…

fix(ui): Properly fix Ctrl+I sidebar toggle with CustomEvent architec… #2

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
lint-and-build:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: bun install
- name: Check formatting
run: bunx prettier --check .
- name: Run ESLint
run: bun run lint
- name: Build application
run: bun run build
- name: Run tests
run: bun run test