Skip to content

Commit 7af9221

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

File tree

4 files changed

+734
-30
lines changed

4 files changed

+734
-30
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,22 @@ 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+
6070
build:
6171
runs-on: ubuntu-latest
6272
steps:

0 commit comments

Comments
 (0)