Skip to content

Commit fd59e42

Browse files
authored
Add typings for dorny/test-reporter@v2 (#69)
Upstream PR: dorny/test-reporter#575
1 parent 83b5428 commit fd59e42

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# See https://github.com/typesafegithub/github-actions-typing/
2+
inputs:
3+
artifact:
4+
type: string
5+
6+
name:
7+
type: string
8+
9+
path:
10+
type: list
11+
separator: ','
12+
list-item:
13+
type: string
14+
15+
path-replace-backslashes:
16+
type: boolean
17+
18+
reporter:
19+
type: enum
20+
allowed-values:
21+
- dart-json
22+
- dotnet-nunit
23+
- dotnet-trx
24+
- flutter-json
25+
- java-junit
26+
- jest-junit
27+
- mocha-json
28+
- rspec-json
29+
- swift-xunit
30+
31+
list-suites:
32+
type: enum
33+
allowed-values:
34+
- all
35+
- failed
36+
- none
37+
38+
list-tests:
39+
type: enum
40+
allowed-values:
41+
- all
42+
- failed
43+
- none
44+
45+
max-annotations:
46+
type: integer
47+
48+
fail-on-error:
49+
type: boolean
50+
51+
fail-on-empty:
52+
type: boolean
53+
54+
working-directory:
55+
type: string
56+
57+
only-summary:
58+
type: boolean
59+
60+
use-actions-summary:
61+
type: boolean
62+
63+
badge-title:
64+
type: string
65+
66+
token:
67+
type: string
68+
69+
outputs:
70+
conclusion:
71+
type: enum
72+
allowed-values:
73+
- success
74+
- failure
75+
76+
passed:
77+
type: integer
78+
79+
failed:
80+
type: integer
81+
82+
skipped:
83+
type: integer
84+
85+
time:
86+
type: integer
87+
88+
url:
89+
type: string
90+
91+
url_html:
92+
type: string

0 commit comments

Comments
 (0)