Skip to content

fix(ui): Definitive sidebar toggle fix using executeJavaScript + Cust… #6

fix(ui): Definitive sidebar toggle fix using executeJavaScript + Cust…

fix(ui): Definitive sidebar toggle fix using executeJavaScript + Cust… #6

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 --write .
- name: Run ESLint
run: bun run lint
- name: Build application
run: bun run build
- name: Run tests
run: bun run test