We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ac3bc commit e82a0bbCopy full SHA for e82a0bb
.github/workflows/ci.yml
@@ -51,12 +51,23 @@ jobs:
51
with:
52
version: type=image,version=${{ matrix.engine }}
53
54
- - name: Test
+ - name: Test (Node)
55
run: |
56
npm test
57
env:
58
DOCKER_HOST: ${{ steps.engine.outputs.sock }}
59
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
71
build:
72
runs-on: ubuntu-latest
73
steps:
0 commit comments