Skip to content

Commit 188c027

Browse files
dahliaclaude
andcommitted
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 Co-Authored-By: Claude <[email protected]>
1 parent a1fe395 commit 188c027

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
cache: pnpm
192192
- uses: oven-sh/setup-bun@v1
193193
with:
194-
bun-version: latest
194+
bun-version: 1.2.22
195195
- run: pnpm install
196196
- run: pnpm run --recursive test:bun
197197

mise.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[tools]
2-
bun = "latest"
2+
# Bun version should be kept in sync with GitHub Actions workflows
3+
bun = "1.2.22"
4+
# Deno version should be kept in sync with GitHub Actions workflows
35
deno = "2.5.0"
46
node = "22"
57
"npm:pnpm" = "latest"

0 commit comments

Comments
 (0)