Merge pull request #70 from aimingmed/feature/backend-frontend-structure

update
This commit is contained in:
Hong Kai LEE 2025-04-19 07:19:56 +08:00 committed by GitHub
commit 840d5570ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,7 +49,7 @@ jobs:
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
ref: develop ref: develop
@ -232,13 +232,10 @@ jobs:
# Optional: Publish Test Results for UI display # Optional: Publish Test Results for UI display
- name: Publish Test Results - name: Publish Test Results
if: always() # Run even if tests fail if: success() || failure() # always run even if the previous step fails
uses: dorny/test-reporter@v1 uses: mikepenz/action-junit-report@v5
with: with:
name: JUnit Test Report report_paths: ${{ runner.temp }}/${{ inputs.testResultsFilename }}
path: ${{ runner.temp }}/${{ inputs.testResultsFilename }} # Path to the JUnit XML file
reporter: java-junit # Specify the format
token: ${{ secrets.repo_test_1 }}
- name: Docker Compose Down - name: Docker Compose Down
if: always() # Always run cleanup if: always() # Always run cleanup