Skip to content

Commit 3bd7272

Browse files
committed
test-reporter release v2.0.0
1 parent 5c0d9a4 commit 3bd7272

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 2.0.0
4+
* Parse JUnit report with detailed message in failure https://github.com/dorny/test-reporter/pull/559
5+
* Support displaying test results in markdown using GitHub Actions Job Summaries https://github.com/dorny/test-reporter/pull/383
6+
7+
## 1.9.1
8+
* Fix problematic retransmission of authentication token https://github.com/dorny/test-reporter/pull/438
9+
* Report correct number of tests in Dart https://github.com/dorny/test-reporter/pull/426
10+
* Number of completed tests mismatches passed/failed https://github.com/dorny/test-reporter/issues/319
11+
12+
## 1.9.0
13+
* Add support for Rspec (Ruby) https://github.com/dorny/test-reporter/pull/398
14+
315
## 1.8.0
416
* Add `SwiftXunitParser` class based on `JavaJunitParser` for `swift-xunit` reporter https://github.com/dorny/test-reporter/pull/317
517
* Use NodeJS 18 LTS as default runtime https://github.com/dorny/test-reporter/pull/332

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- run: npm test # run tests (configured to use jest-junit reporter)
4949

5050
- name: Test Report
51-
uses: dorny/test-reporter@v1
51+
uses: dorny/test-reporter@v2
5252
if: success() || failure() # run this step even if previous step failed
5353
with:
5454
name: JEST Tests # Name of the check run which will be created
@@ -99,7 +99,7 @@ jobs:
9999
report:
100100
runs-on: ubuntu-latest
101101
steps:
102-
- uses: dorny/test-reporter@v1
102+
- uses: dorny/test-reporter@v2
103103
with:
104104
artifact: test-results # artifact name
105105
name: JEST Tests # Name of the check run which will be created
@@ -110,7 +110,7 @@ jobs:
110110
## Usage
111111

112112
```yaml
113-
- uses: dorny/test-reporter@v1
113+
- uses: dorny/test-reporter@v2
114114
with:
115115
116116
# Name or regex of artifact containing test results

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "test-reporter",
3-
"version": "2.0.0-preview",
3+
"version": "2.0.0",
44
"private": true,
55
"description": "Presents test results from popular testing frameworks as Github check run",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)