Skip to content

Commit

Permalink
test-reporter release v2.0.0
Browse files Browse the repository at this point in the history
Merge pull request #561 from jozefizso/release/v2.0.0
  • Loading branch information
Jozef Izso authored and GitHub committed Mar 12, 2025
2 parents 5c0d9a4 + 3bd7272 commit 6e6a65b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 2.0.0
* Parse JUnit report with detailed message in failure https://github.com/dorny/test-reporter/pull/559
* Support displaying test results in markdown using GitHub Actions Job Summaries https://github.com/dorny/test-reporter/pull/383

## 1.9.1
* Fix problematic retransmission of authentication token https://github.com/dorny/test-reporter/pull/438
* Report correct number of tests in Dart https://github.com/dorny/test-reporter/pull/426
* Number of completed tests mismatches passed/failed https://github.com/dorny/test-reporter/issues/319

## 1.9.0
* Add support for Rspec (Ruby) https://github.com/dorny/test-reporter/pull/398

## 1.8.0
* Add `SwiftXunitParser` class based on `JavaJunitParser` for `swift-xunit` reporter https://github.com/dorny/test-reporter/pull/317
* Use NodeJS 18 LTS as default runtime https://github.com/dorny/test-reporter/pull/332
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- run: npm test # run tests (configured to use jest-junit reporter)

- name: Test Report
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v2
if: success() || failure() # run this step even if previous step failed
with:
name: JEST Tests # Name of the check run which will be created
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
- uses: dorny/test-reporter@v2
with:
artifact: test-results # artifact name
name: JEST Tests # Name of the check run which will be created
Expand All @@ -110,7 +110,7 @@ jobs:
## Usage

```yaml
- uses: dorny/test-reporter@v1
- uses: dorny/test-reporter@v2
with:
# Name or regex of artifact containing test results
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "test-reporter",
"version": "2.0.0-preview",
"version": "2.0.0",
"private": true,
"description": "Presents test results from popular testing frameworks as Github check run",
"main": "lib/main.js",
Expand Down

0 comments on commit 6e6a65b

Please sign in to comment.