Skip to content

Commit

Permalink
Github: tell reporter where repository is
Browse files Browse the repository at this point in the history
  • Loading branch information
miklschmidt committed Jan 2, 2024
1 parent 95502e2 commit ef76686
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/ConfiguratorTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v4
with:
path: 'ratos-configuration'
path: "ratos-configuration"

- name: Fetch Configurator Repository
uses: actions/checkout@v4
with:
path: 'ratos-configurator'
path: "ratos-configurator"
repository: Rat-OS/RatOS-configurator
ref: ${{ github.ref_name }}

- name: Setup Node.js environment
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -69,15 +69,16 @@ jobs:
- name: Install all dependencies
working-directory: ratos-configurator/src
run: pnpm install --frozen-lockfile

- name: Run configuration tests
working-directory: ratos-configurator/src
run: pnpm run test:ci:config --outputFile=./report.xml

- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
if: success() || failure() # run this step even if previous step failed
with:
name: JEST Tests # Name of the check run which will be created
path: report.xml # Path to test results
reporter: jest-junit # Format of test results
name: JEST Tests # Name of the check run which will be created
path: report.xml # Path to test results
reporter: jest-junit # Format of test results
working-directory: ratos-configurator

0 comments on commit ef76686

Please sign in to comment.