Merge pull request #581 from OlesGalatsan/features/increase-summary-limit

Increase step summary limit to 1MiB
This commit is contained in:
Jozef Izso 2025-05-15 15:17:47 +02:00 committed by GitHub
commit ef7793576a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

2
dist/index.js generated vendored
View file

@ -1792,7 +1792,7 @@ const node_utils_1 = __nccwpck_require__(5384);
const parse_utils_1 = __nccwpck_require__(9633);
const slugger_1 = __nccwpck_require__(9537);
const MAX_REPORT_LENGTH = 65535;
const MAX_ACTIONS_SUMMARY_LENGTH = 131072; // 1048576 soon
const MAX_ACTIONS_SUMMARY_LENGTH = 1048576;
const defaultOptions = {
listSuites: 'all',
listTests: 'all',

View file

@ -6,7 +6,7 @@ import {getFirstNonEmptyLine} from '../utils/parse-utils'
import {slug} from '../utils/slugger'
const MAX_REPORT_LENGTH = 65535
const MAX_ACTIONS_SUMMARY_LENGTH = 131072 // 1048576 soon
const MAX_ACTIONS_SUMMARY_LENGTH = 1048576
export interface ReportOptions {
listSuites: 'all' | 'failed' | 'none'