You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* When enabled, a markdown summary of test results is written to the path specified by `outputPath`.
25
25
*/
26
-
jobSummary?: {
26
+
jobSummary?: Partial<JobSummaryOptions>
27
+
}
28
+
29
+
interfaceJobSummaryOptions{
30
+
/**
31
+
* Whether to generate the summary.
32
+
*
33
+
* @default true
34
+
*/
35
+
enabled: boolean
36
+
/**
37
+
* File path to write the summary to.
38
+
*
39
+
* @default process.env.GITHUB_STEP_SUMMARY
40
+
*/
41
+
outputPath: string|undefined
42
+
/**
43
+
* Configuration for generating permalink URLs to source files in the GitHub repository.
44
+
*
45
+
* When all three values are available (either from this config or the defaults picked from environment variables), test names in the summary will link to the relevant source lines.
46
+
*/
47
+
fileLinks: {
27
48
/**
28
-
* Whether to generate the summary.
49
+
* The GitHub repository in `owner/repo` format.
29
50
*
30
-
* @defaulttrue
51
+
* @defaultprocess.env.GITHUB_REPOSITORY
31
52
*/
32
-
enabled?: boolean
53
+
repository?: string|undefined
33
54
/**
34
-
* File path to write the summary to.
55
+
* The commit SHA to use in permalink URLs.
35
56
*
36
-
* @default process.env.GITHUB_STEP_SUMMARY
57
+
* @default process.env.GITHUB_SHA
37
58
*/
38
-
outputPath?: string|undefined
59
+
commitHash?: string|undefined
39
60
/**
40
-
* Configuration for generating permalink URLs to source files in the GitHub repository.
61
+
* The absolute path to the root of the repository on disk.
62
+
*
63
+
* This value is used to compute relative file paths for the permalink URLs.
41
64
*
42
-
* When all three values are available (either from this config or the defaults picked from environment variables), test names in the summary will link to the relevant source lines.
65
+
* @default process.env.GITHUB_WORKSPACE
43
66
*/
44
-
fileLinks?: {
45
-
/**
46
-
* The GitHub repository in `owner/repo` format.
47
-
*
48
-
* @default process.env.GITHUB_REPOSITORY
49
-
*/
50
-
repository?: string|undefined
51
-
/**
52
-
* The commit SHA to use in permalink URLs.
53
-
*
54
-
* @default process.env.GITHUB_SHA
55
-
*/
56
-
commitHash?: string|undefined
57
-
/**
58
-
* The absolute path to the root of the repository on disk.
59
-
*
60
-
* This value is used to compute relative file paths for the permalink URLs.
0 commit comments