Skip to content

Commit

Permalink
Github: fix bugs and reporting in config test
Browse files Browse the repository at this point in the history
  • Loading branch information
miklschmidt authored Jan 2, 2024
1 parent 1bacbe0 commit 95502e2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ConfiguratorTests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Testing: configuration"
env:
RATOS_CONFIGURATION_PATH=: ${{ github.workspace }}/ratos-configuration
RATOS_CONFIGURATION_PATH: ${{ github.workspace }}/ratos-configuration
KLIPPER_CONFIG_PATH: ${{ github.workspace }}/config
RATOS_SCRIPT_DIR: ${{ github.workspace }}/ratos-configurator/src/scripts
KLIPPER_DIR: ${{ github.workspace }}/klipper
Expand Down Expand Up @@ -72,4 +72,12 @@ jobs:

- name: Run configuration tests
working-directory: ratos-configurator/src
run: pnpm run test:ci:config --outputFile=./report.json
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
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

0 comments on commit 95502e2

Please sign in to comment.