You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should this adhere to the defaults.runworking-directory and prepend?
defaults:
run:
working-directory: ./src/
With
- name: Test Reportuses: dorny/test-reporter@v1if: success() || failure() # run this step even if previous step failedwith:
name: JEST Tests # Name of the check run which will be createdpath: reports/jest-*.xml # Path to test resultsreporter: jest-junit # Format of test results
As a workaround it's possible to set working directory through action itself, then path will be combined properly.
Check an example in replies to another issue.
Should this adhere to the
defaults.run
working-directory
and prepend?With
path
becomes./src/reports/jest-*.xml
The text was updated successfully, but these errors were encountered: