Skip to content

Commit ac7d373

Browse files
cinderblockclaude
andcommitted
Run bun test on push and PRs
Adds a GitHub Actions workflow that installs with a frozen lockfile and runs `bun test` on Ubuntu and Windows. Windows is in the matrix because the project's primary development environment is Windows; covering it in CI catches path-handling regressions before they land. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent e172c79 commit ac7d373

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
os: [ubuntu-latest, windows-latest]
15+
runs-on: ${{ matrix.os }}
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- uses: oven-sh/setup-bun@v2
21+
with:
22+
bun-version: latest
23+
24+
- run: bun install --frozen-lockfile
25+
26+
- run: bun test

0 commit comments

Comments
 (0)