Dax Raad 5 months ago
parent
commit
f2fac29270
1 changed files with 5 additions and 5 deletions
  1. 5 5
      .github/actions/setup-bun/action.yml

+ 5 - 5
.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