Skip to content

Commit 916699d

Browse files
unity-test-summary@v1.0.6 (#8)
- bump deps - update node24 (required for unity-cli)
1 parent 0456f36 commit 916699d

File tree

6 files changed

+47
-47
lines changed

6 files changed

+47
-47
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: read
2424
steps:
2525
- name: Free Disk Space
26-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.unity-version == '6000.2' }}
26+
if: ${{ matrix.os == 'ubuntu-latest' }}
2727
uses: endersonmenezes/free-disk-space@713d134e243b926eba4a5cce0cf608bfd1efb89a # v2.1.1
2828
with:
2929
remove_android: true

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ inputs:
88
description: The path to the test results file(s).
99
required: true
1010
runs:
11-
using: node20
11+
using: node24
1212
main: dist/index.js

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30326,7 +30326,7 @@ function parseLogs(output) {
3032630326
continue;
3032730327
}
3032830328
line = (_a = line.replace(/\\u001b\[[0-9]*m/g, '')) === null || _a === void 0 ? void 0 : _a.trim();
30329-
if (line === '' || line.startsWith('Saving results to:')) {
30329+
if (!line || line === '' || line.startsWith('Saving results to:')) {
3033030330
continue;
3033130331
}
3033230332
logs.push(line);

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unity-test-summary",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "A GitHub action to gather and display Unit Tests from the Unity Game Engine.",
55
"author": "RageAgainstThePixel",
66
"license": "MIT",
@@ -21,7 +21,7 @@
2121
},
2222
"devDependencies": {
2323
"@types/jest": "^29.5.14",
24-
"@types/node": "^22.18.13",
24+
"@types/node": "^22.19.1",
2525
"@vercel/ncc": "^0.34.0",
2626
"shx": "^0.3.4",
2727
"ts-jest": "^29.4.5",
@@ -34,4 +34,4 @@
3434
"clean": "npm install && shx rm -rf dist/ out/ node_modules/ && npm ci",
3535
"test": "jest"
3636
}
37-
}
37+
}

0 commit comments

Comments
 (0)