From 26b0f82358421efdbd99ff7c7dd2612305895b6f Mon Sep 17 00:00:00 2001 From: Matthew L McPeak Date: Fri, 12 Jun 2026 14:51:03 -0400 Subject: [PATCH] fix: CI --- .forgejo/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 4e1990f..6e1a4b2 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -55,8 +55,11 @@ jobs: runs-on: ubuntu-latest container: catthehacker/ubuntu:act-latest steps: - - name: Install git - run: apt-get update && apt-get install -y git nodejs npm bun + - name: Install git, node, and npm + run: apt-get update && apt-get install -y git nodejs npm + + - name: Install bun + run: curl -fsSL https://bun.sh/install | bash - name: Checkout uses: actions/checkout@v4