Update CI workflow to install Bun directly via script
CI / build (push) Failing after 3s

- Replaced the Bun setup action with a script to install Bun and update the PATH.
- Ensured Bun's binary directory is added to the GitHub environment for subsequent steps.
This commit is contained in:
eewing
2026-02-17 09:37:25 -06:00
parent b3735ffbe2
commit 69c6b1a4d4
+4 -1
View File
@@ -14,7 +14,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Bun - name: Setup Bun
uses: oven-sh/setup-bun@v2 run: |
curl -fsSL https://bun.sh/install | bash
echo "$HOME/.bun/bin" >> $GITHUB_PATH
echo "PATH=$HOME/.bun/bin:$PATH" >> $GITHUB_ENV
- name: Install dependencies - name: Install dependencies
run: bun install run: bun install