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