From 8b055ac24765452d8e118d8fa75f87dae009522a Mon Sep 17 00:00:00 2001 From: Oles Galatsan Date: Thu, 15 May 2025 15:37:31 +0300 Subject: [PATCH] Increase step summary limit --- dist/index.js | 2 +- src/report/get-report.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index b0f65166..1852d0cd 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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', diff --git a/src/report/get-report.ts b/src/report/get-report.ts index 9253f8fb..a16dba1f 100644 --- a/src/report/get-report.ts +++ b/src/report/get-report.ts @@ -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'