Skip to content

Commit 5b7ce68

Browse files
committed
Merge branch 'main' of https://github.com/matlab-actions/run-tests into tarun/fixRelease
2 parents 214778a + 03b3fa0 commit 5b7ce68

3 files changed

Lines changed: 39 additions & 45 deletions

File tree

package-lock.json

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "run-matlab-tests-action",
33
"author": "The MathWorks, Inc.",
4-
"version": "3.0.0",
4+
"version": "3.1.1",
55
"description": "",
66
"type": "module",
77
"main": "lib/index.js",
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"@actions/core": "^3.0.0",
2424
"@actions/exec": "^3.0.0",
25-
"common-utils": "github:matlab-actions/common-utils#v2.1.1"
25+
"common-utils": "github:matlab-actions/common-utils#v2.2.1"
2626
},
2727
"devDependencies": {
2828
"@types/jest": "^30.0.0",

src/index.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,9 @@ async function run() {
6969
.finally(() => {
7070
const runnerTemp = process.env.RUNNER_TEMP || "";
7171
const runId = process.env.GITHUB_RUN_ID || "";
72-
const actionName = process.env.GITHUB_ACTION || "";
7372

7473
//add test results and code coverage view
75-
testResultsSummary.processAndAddTestSummary(
76-
runnerTemp,
77-
runId,
78-
actionName,
79-
workspaceDir,
80-
);
74+
testResultsSummary.processAndAddTestSummary(runnerTemp, runId, workspaceDir);
8175
core.summary.write();
8276
});
8377
}

0 commit comments

Comments
 (0)