We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59c6d26 commit cb157c8Copy full SHA for cb157c8
1 file changed
.github/workflows/ci.yml
@@ -7,7 +7,7 @@ on:
7
branches: [main]
8
9
jobs:
10
- test:
+ test-node:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
@@ -25,3 +25,22 @@ jobs:
25
- run: pnpm audit
26
- run: ./bin/run --version
27
- run: ./bin/run --help
28
+
29
+ test-bun:
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - uses: actions/checkout@v4
33
+ - uses: oven-sh/setup-bun@v2
34
+ - run: bun install --frozen-lockfile
35
+ - run: bun run build
36
+ - run: bun test
37
38
+ test-deno:
39
40
41
42
+ - uses: denoland/setup-deno@v2
43
+ with:
44
+ deno-version: v2.x
45
+ - run: deno check src/mod.ts
46
+ - run: deno check src/cli.ts
0 commit comments