Skip to content

Commit e3ed5d0

Browse files
committed
fixes
1 parent c9c01d8 commit e3ed5d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

browserstack-report-action/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38202,7 +38202,7 @@ async function run() {
3820238202
pollingInterval
3820338203
);
3820438204

38205-
await ReportProcessor.processReport(reportData.report);
38205+
await ReportProcessor.processReport(reportData);
3820638206
} catch (error) {
3820738207
core.setFailed(`Action failed: ${error.message}`);
3820838208
}

browserstack-report-action/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function run() {
4444
pollingInterval
4545
);
4646

47-
await ReportProcessor.processReport(reportData.report);
47+
await ReportProcessor.processReport(reportData);
4848
} catch (error) {
4949
core.setFailed(`Action failed: ${error.message}`);
5050
}

0 commit comments

Comments
 (0)