Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test Summary isn't working on windows runner #24

Open
sgannap opened this issue Feb 10, 2023 Discussed in #23 · 0 comments
Open

Test Summary isn't working on windows runner #24

sgannap opened this issue Feb 10, 2023 Discussed in #23 · 0 comments

Comments

@sgannap
Copy link

sgannap commented Feb 10, 2023

Discussed in #23

Originally posted by sgannap January 30, 2023
Here is my workflow file:
name: Node.js CI

on:
push:
branches:
- '' # matches every branch that doesn't contain a '/'
- '
/*' # matches every branch containing a single '/'
- '**' # matches every branch
pull_request:
branches:
- SmokeSuite
- PreRelease
schedule:
- cron: "5 */4 * * *"

jobs:
build:
runs-on: "QA-Automation"

strategy:
  matrix:
    node-version: [16]

steps:
  - uses: actions/checkout@v3
  - name: Use Node.js ${{ matrix.node-version }}
    uses: actions/setup-node@v3
    with:
      node-version: ${{ matrix.node-version }}
  - run: npm run webtests
  - name: Setup Python
    uses: actions/setup-python@v2
    with:
      python-version: '3.7'
  - name: Publish Test Results
    uses: test-summary/action@v1
    if: always()
    with:
      paths: |
        "junit_reports/*.xml"
  - name: Test Report
    uses: dorny/test-reporter@v1
    if: success() || failure()    # run this step even if previous step failed
    with:
      name: Junit Tests            # Name of the check run which will be created
      path: "junit_reports/*.xml"   # Path to test results
      reporter: java-junit        # Format of test results 
  
  Test-reports are working as expected but not the summary part
Screen Shot 2023-01-30 at 1 17 49 PM Screen Shot 2023-01-30 at 1 17 59 PM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant