Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
dorny
/
test-reporter
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Security
Insights
Files
6e6a65b
.github
.vscode
__tests__
assets
dist
reports
src
.editorconfig
.eslintignore
.eslintrc.json
.gitattributes
.gitignore
.nvmrc
.prettierignore
.prettierrc.json
CHANGELOG.md
LICENSE
README.md
action.yml
jest.config.js
package-lock.json
package.json
tsconfig.json
Breadcrumbs
test-reporter
/
package.json
Blame
Blame
Latest commit
History
History
83 lines (83 loc) · 2.87 KB
Breadcrumbs
test-reporter
/
package.json
Top
File metadata and controls
Code
Blame
83 lines (83 loc) · 2.87 KB
Raw
{ "name": "test-reporter", "version": "2.0.0", "private": true, "description": "Presents test results from popular testing frameworks as Github check run", "main": "lib/main.js", "scripts": { "build": "tsc", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "lint": "eslint src/**/*.ts", "package": "ncc build --license licenses.txt && eolConverter lf 'dist/*'", "version": "npm run build && npm run package && git add dist/*", "test": "jest --ci --reporters=default --reporters=jest-junit", "jest:updatesnapshot": "jest --updateSnapshot", "all": "npm run build && npm run format && npm run lint && npm run package && npm test", "dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"", "dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"", "dotnet-nunit-fixture": "nunit.exe reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml", "jest-fixture": "cd \"reports/jest\" && npm test", "mocha-fixture": "cd \"reports/mocha\" && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/dorny/test-reporter.git" }, "keywords": [ "actions", "node", "test", "report" ], "author": "Michal Dorner <dorner.michal@gmail.com>", "license": "MIT", "dependencies": { "@actions/core": "^1.11.1", "@actions/exec": "^1.1.1", "@actions/github": "^6.0.0", "adm-zip": "^0.5.16", "fast-glob": "^3.3.3", "got": "^11.8.6", "picomatch": "^4.0.2", "xml2js": "^0.6.2" }, "devDependencies": { "@octokit/webhooks-types": "^7.6.1", "@types/adm-zip": "^0.5.7", "@types/jest": "^29.5.14", "@types/node": "^20.17.24", "@types/picomatch": "^2.3.4", "@types/xml2js": "^0.4.14", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "@vercel/ncc": "^0.38.3", "eol-converter-cli": "^1.1.0", "eslint": "^8.57.1", "eslint-import-resolver-typescript": "^3.8.5", "eslint-plugin-github": "^4.10.2", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jest": "^28.11.0", "eslint-plugin-prettier": "^5.2.3", "jest": "^29.7.0", "jest-circus": "^29.7.0", "jest-junit": "^16.0.0", "js-yaml": "^4.1.0", "prettier": "^3.5.3", "ts-jest": "^29.2.6", "typescript": "^5.5.4" }, "jest-junit": { "suiteName": "jest tests", "outputDirectory": "__tests__/__results__", "outputName": "jest-junit.xml", "ancestorSeparator": " › ", "uniqueOutputName": "false", "suiteNameTemplate": "{filepath}", "classNameTemplate": "{classname}", "titleTemplate": "{title}" }, "engines": { "node": ">=20" } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
You can’t perform that action at this time.