We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ci-bun.yml
1 parent 3620d07 commit d19b7b6Copy full SHA for d19b7b6
.github/workflows/ci-bun.yml
@@ -0,0 +1,30 @@
1
+name: ci-bun
2
+
3
+on:
4
+ workflow_call:
5
6
+jobs:
7
+ ci-bun:
8
+ strategy:
9
+ matrix:
10
+ os: [windows-latest, macOS-latest, ubuntu-latest]
11
+ bun: [latest]
12
13
+ runs-on: ${{ matrix.os }}
14
15
+ steps:
16
+ - name: Check out repo
17
+ uses: actions/checkout@v5
18
19
+ - name: Set up Bun
20
+ uses: oven-sh/setup-bun@v2
21
+ with:
22
+ bun-version: ${{ matrix.bun }}
23
24
+ - name: Bun install, build, and test
25
+ run: |
26
+ bun install
27
+ bun run --bun build
28
+ bun run --bun test
29
+ env:
30
+ CI: true
0 commit comments