diff options
| author | Dax Raad <[email protected]> | 2025-10-12 00:46:37 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-10-12 00:46:37 -0400 |
| commit | 3ad6f84adbcab279ea81345ca44e8931b2b83fec (patch) | |
| tree | 6abb4179e978c079e6a62453ba58f58ef829f7f6 /.github/workflows/test.yml | |
| parent | 24a5b16af82f268942bfd4e56f8e2e3877f0cfb2 (diff) | |
| download | opencode-3ad6f84adbcab279ea81345ca44e8931b2b83fec.tar.gz opencode-3ad6f84adbcab279ea81345ca44e8931b2b83fec.zip | |
ci: centralize bun setup to reduce duplication and improve caching
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 441f9585f..c2df2814c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,15 +18,12 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Setup Bun - uses: oven-sh/setup-bun@v1 - with: - bun-version: 1.3.0 + uses: ./.github/actions/setup-bun - name: run run: | git config --global user.email "[email protected]" git config --global user.name "opencode" - bun install bun turbo test env: CI: true |
