File tree 4 files changed +18
-6
lines changed
4 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
15
## 1.8.0
4
16
* Add ` SwiftXunitParser ` class based on ` JavaJunitParser ` for ` swift-xunit ` reporter https://github.com/dorny/test-reporter/pull/317
5
17
* Use NodeJS 18 LTS as default runtime https://github.com/dorny/test-reporter/pull/332
Original file line number Diff line number Diff line change 48
48
- run : npm test # run tests (configured to use jest-junit reporter)
49
49
50
50
- name : Test Report
51
- uses : dorny/test-reporter@v1
51
+ uses : dorny/test-reporter@v2
52
52
if : success() || failure() # run this step even if previous step failed
53
53
with :
54
54
name : JEST Tests # Name of the check run which will be created
99
99
report:
100
100
runs-on: ubuntu-latest
101
101
steps:
102
- - uses: dorny/test-reporter@v1
102
+ - uses: dorny/test-reporter@v2
103
103
with:
104
104
artifact: test-results # artifact name
105
105
name: JEST Tests # Name of the check run which will be created
@@ -110,7 +110,7 @@ jobs:
110
110
# # Usage
111
111
112
112
` ` ` yaml
113
- - uses: dorny/test-reporter@v1
113
+ - uses: dorny/test-reporter@v2
114
114
with:
115
115
116
116
# Name or regex of artifact containing test results
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " test-reporter" ,
3
- "version" : " 2.0.0-preview " ,
3
+ "version" : " 2.0.0" ,
4
4
"private" : true ,
5
5
"description" : " Presents test results from popular testing frameworks as Github check run" ,
6
6
"main" : " lib/main.js" ,
You can’t perform that action at this time.
0 commit comments