Skip to content

Commit 05deb32

Browse files
committed
Remove action name
1 parent 6fbc657 commit 05deb32

3 files changed

Lines changed: 57 additions & 39 deletions

File tree

package-lock.json

Lines changed: 54 additions & 30 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.0",
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.0"
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
@@ -67,15 +67,9 @@ async function run() {
6767
.finally(() => {
6868
const runnerTemp = process.env.RUNNER_TEMP || "";
6969
const runId = process.env.GITHUB_RUN_ID || "";
70-
const actionName = process.env.GITHUB_ACTION || "";
7170

7271
//add test results and code coverage view
73-
testResultsSummary.processAndAddTestSummary(
74-
runnerTemp,
75-
runId,
76-
actionName,
77-
workspaceDir,
78-
);
72+
testResultsSummary.processAndAddTestSummary(runnerTemp, runId, workspaceDir);
7973
core.summary.write();
8074
});
8175
}

0 commit comments

Comments
 (0)