Skip to content

Commit 6a6a843

Browse files
committed
test: only run bun tests on opt-in
1 parent f4652b0 commit 6a6a843

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/test.yml

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: Test
22
on:
33
push:
4+
workflow_dispatch:
5+
inputs:
6+
bun:
7+
description: 'Test on bun'
8+
required: true
9+
default: false
10+
type: boolean
411
jobs:
512
testBrowser:
613
timeout-minutes: 15
@@ -57,6 +64,7 @@ jobs:
5764
run: npm run test:node
5865

5966
testBun:
67+
if: always() && github.event.inputs.bun == 'true'
6068
timeout-minutes: 15
6169
runs-on: ubuntu-latest
6270
continue-on-error: true

0 commit comments

Comments
 (0)