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.
1 parent 2e52f01 commit 9f595c4Copy full SHA for 9f595c4
.github/workflows/stress.yml
@@ -1,6 +1,31 @@
1
name: Stress tests
2
3
on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ ref:
7
+ type: string
8
+ description: Git ref to run tests on
9
+ required: true
10
+ default: main
11
+ test-type:
12
+ description: Type of test to run
13
+ options:
14
+ - ci-stress
15
+ - ci-nightly
16
17
18
+ test-timeout-minutes:
19
+ description: 'Timeout for the test, in minutes (stress: 20, nightly: 360)'
20
21
+ type: number
22
+ default: 360
23
+ reuse-v8-context:
24
+ description: Whether to enable the "reuse V8 context" feature
25
26
+ type: boolean
27
+ default: true
28
+
29
workflow_call:
30
inputs:
31
test-type:
0 commit comments