Skip to content

Commit e82a0bb

Browse files
committed
test Bun support
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
1 parent 47ac3bc commit e82a0bb

File tree

4 files changed

+717
-30
lines changed

4 files changed

+717
-30
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,23 @@ jobs:
5151
with:
5252
version: type=image,version=${{ matrix.engine }}
5353

54-
- name: Test
54+
- name: Test (Node)
5555
run: |
5656
npm test
5757
env:
5858
DOCKER_HOST: ${{ steps.engine.outputs.sock }}
5959

60+
- name: Install Bun
61+
uses: oven-sh/setup-bun@v2
62+
63+
- name: Test (Bun)
64+
run: |
65+
bun i
66+
bun --bun test test/*.test.ts
67+
env:
68+
DOCKER_HOST: ${{ steps.engine.outputs.sock }}
69+
70+
6071
build:
6172
runs-on: ubuntu-latest
6273
steps:

0 commit comments

Comments
 (0)