diff options
| author | Dax Raad <[email protected]> | 2025-11-11 01:33:02 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-11-11 01:33:02 -0500 |
| commit | f2fac29270579526105fa8f7a47369ab4eff3303 (patch) | |
| tree | 3af99f481075e93e44d4f90369f2d07f2a7d6126 /.github/actions | |
| parent | 12892f0e1295ce74b3b145645d6531ec8edb5098 (diff) | |
| download | opencode-f2fac29270579526105fa8f7a47369ab4eff3303.tar.gz opencode-f2fac29270579526105fa8f7a47369ab4eff3303.zip | |
ci
Diffstat (limited to '.github/actions')
| -rw-r--r-- | .github/actions/setup-bun/action.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/actions/setup-bun/action.yml b/.github/actions/setup-bun/action.yml index 784ebb173..cba04facc 100644 --- a/.github/actions/setup-bun/action.yml +++ b/.github/actions/setup-bun/action.yml @@ -3,6 +3,11 @@ description: "Setup Bun with caching and install dependencies" runs: using: "composite" steps: + - name: Setup Bun + uses: oven-sh/setup-bun@v2 + with: + bun-version-file: package.json + - name: Cache ~/.bun id: cache-bun uses: actions/cache@v4 @@ -12,11 +17,6 @@ runs: restore-keys: | ${{ runner.os }}-bun-${{ hashFiles('package.json') }}- - - name: Setup Bun - uses: oven-sh/setup-bun@v2 - with: - bun-version-file: package.json - - name: Install dependencies run: bun install shell: bash |
