Skip to content

Commit 554c7a4

Browse files
committed
Pin Bun version to 1.2.22
Bun 1.2.23 introduced a regression causing false positives for nested test() detection, breaking previously working tests with "test() inside another test() is not yet implemented" errors. Pinning to 1.2.22 until this regression is fixed. oven-sh/bun#5090
1 parent 5917d3f commit 554c7a4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
run_install: true
137137
- uses: oven-sh/setup-bun@v2
138138
with:
139-
bun-version: latest
139+
bun-version: 1.2.22
140140
- run: pnpm run -r test:bun
141141

142142
check:

mise.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tools]
2-
bun = "1.2"
2+
# Bun version should be kept in sync with GitHub Actions workflows
3+
bun = "1.2.22"
34
deno = "2.3"
45
node = "24"
56
"npm:pnpm" = "latest"

0 commit comments

Comments
 (0)