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/typecheck.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/typecheck.yml')
| -rw-r--r-- | .github/workflows/typecheck.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index 3854644b6..8943e10be 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -13,12 +13,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Bun - uses: oven-sh/setup-bun@v1 - with: - bun-version: 1.3.0 - - - name: Install dependencies - run: bun install + uses: ./.github/actions/setup-bun - name: Run typecheck run: bun typecheck |
