Skip to content

Commit 750bc07

Browse files
committed
test: fix bun versions in GitHub Action
1 parent e8a0918 commit 750bc07

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@ jobs:
2626
outputs:
2727
NODE_MIN: ${{ env.NODE_MIN }}
2828
NODE_LATEST: ${{ env.NODE_LATEST }}
29+
BUN_MIN: ${{ env.BUN_MIN }}
30+
BUN_LATEST: ${{ env.BUN_LATEST }}
2931
steps:
30-
- name: "Prepare node.js version matrix"
32+
- name: "Prepare node.js versions for matrix"
3133
run: |
3234
echo "NODE_MIN=${{ env.NODE_MIN }}" >> $GITHUB_OUTPUT
3335
echo "NODE_LATEST=${{ env.NODE_LATEST }}" >> $GITHUB_OUTPUT
34-
- name: "Prepare bun.sh version matrix"
36+
- name: "Prepare bun.sh versions for matrix"
3537
run: |
3638
echo "BUN_MIN=${{ env.BUN_MIN }}" >> $GITHUB_OUTPUT
3739
echo "BUN_LATEST=${{ env.BUN_LATEST }}" >> $GITHUB_OUTPUT
@@ -104,7 +106,7 @@ jobs:
104106
restore-keys: |
105107
${{ runner.os }}-${{ matrix.bun-version }}-bun-
106108
107-
- name: Use latest Bun
109+
- name: Use bun ${{ matrix.bun-version }}
108110
uses: oven-sh/setup-bun@v2
109111
with:
110112
bun-version: ${{ matrix.bun-version }}

0 commit comments

Comments
 (0)