From c7bcdef9b540f0c2abea1c1a54c1315a694fee9d Mon Sep 17 00:00:00 2001 From: Greg Pstrucha <875316+Gricha@users.noreply.github.com> Date: Mon, 5 Jan 2026 05:34:23 +0000 Subject: [PATCH 1/2] Add Bun setup to CI workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09a2c50f..6ed70f2c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,11 +19,14 @@ jobs: node-version: '22' cache: 'npm' + - name: Set up Bun + uses: oven-sh/setup-bun@v2 + - name: Install dependencies - run: npm ci + run: bun install - name: Build - run: npm run build + run: bun run build - name: Run tests - run: npm test + run: bun run test From 3787a40813f1ff64c6f5669ba89bef2bdd96c3b9 Mon Sep 17 00:00:00 2001 From: Greg Pstrucha <875316+Gricha@users.noreply.github.com> Date: Mon, 5 Jan 2026 05:37:07 +0000 Subject: [PATCH 2/2] Install web dependencies in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6ed70f2c..dbf1bb49 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,9 @@ jobs: uses: oven-sh/setup-bun@v2 - name: Install dependencies - run: bun install + run: | + bun install + cd web && bun install - name: Build run: bun run build