Skip to content

Commit

Permalink
Merge pull request #16 from phoenix-actions/feature/10
Browse files Browse the repository at this point in the history
feature/10 add runHtmlUrl to action.yaml. fixes #10
  • Loading branch information
IanMoroney authored May 27, 2022
2 parents 2e9c7c2 + ae0ca6c commit 1e9b578
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- run: npm test # run tests (configured to use jest-junit reporter)

- name: Test Report
uses: phoenix-actions/test-reporting@v7
uses: phoenix-actions/test-reporting@v8
id: test-report # Set ID reference for step
if: success() || failure() # run this step even if previous step failed
with:
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- run: npm test # run tests (configured to use jest-junit reporter)

- name: Test Report
uses: phoenix-actions/test-reporting@v7
uses: phoenix-actions/test-reporting@v8
id: test-report # Set ID reference for step
if: success() || failure() # run this step even if previous step failed
with:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: phoenix-actions/test-reporting@v7
- uses: phoenix-actions/test-reporting@v8
id: test-report # Set ID reference for step
with:
artifact: test-results # artifact name
Expand All @@ -137,7 +137,7 @@ jobs:
## Usage

```yaml
- uses: phoenix-actions/test-reporting@v7
- uses: phoenix-actions/test-reporting@v8
with:
# Name or regex of artifact containing test results
Expand Down
2 changes: 2 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ outputs:
description: Count of skipped tests
time:
description: Test execution time [ms]
runHtmlUrl:
description: Exposes the URL for the HTML version of the run report
runs:
using: 'node16'
main: 'dist/index.js'
Expand Down

0 comments on commit 1e9b578

Please sign in to comment.