-
-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github: tell reporter where repository is
- Loading branch information
1 parent
95502e2
commit ef76686
Showing
1 changed file
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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 |