Skip to content

Commit f40087e

Browse files
committed
ci: fix test execution in non-interactive CI environment
Wrap 'bun test' with 'script' command to allocate a pseudo-TTY, ensuring PTY processes spawn correctly in GitHub Actions runners that lack a real terminal.
1 parent 17e9b45 commit f40087e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: bun run build:all:prod
4949

5050
- name: Run tests
51-
run: bun test
51+
run: script -q -c "bun test" /dev/null
5252

5353
dependency-review:
5454
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)