From 0a273b3dd7cf28fb4e1dc0071f032adae69c87a9 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sun, 18 Jan 2026 11:39:40 -0600 Subject: [PATCH 1/8] chore: Bump versions --- .github/actions/publish-test-deltas/action.yml | 2 +- .github/actions/test-reporter/action.yml | 2 +- .github/actions/test-summary/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/publish-test-deltas/action.yml b/.github/actions/publish-test-deltas/action.yml index 7a7025b..e8fc489 100644 --- a/.github/actions/publish-test-deltas/action.yml +++ b/.github/actions/publish-test-deltas/action.yml @@ -52,7 +52,7 @@ runs: using: composite steps: - name: publish-unit-test-result-action - uses: EnricoMi/publish-unit-test-result-action@v2.18.0 + uses: EnricoMi/publish-unit-test-result-action@v2.22.0 # TODO bump if: always() # if: (success() || failure()) && startsWith(${{ inputs.runs-on }}, 'ubuntu') # FIXME with: diff --git a/.github/actions/test-reporter/action.yml b/.github/actions/test-reporter/action.yml index 191aa61..0c8fe60 100644 --- a/.github/actions/test-reporter/action.yml +++ b/.github/actions/test-reporter/action.yml @@ -60,7 +60,7 @@ runs: steps: # SRC: https://github.com/dorny/test-reporter?tab=readme-ov-file#usage - name: test-reporter - uses: dorny/test-reporter@v1.9.1 + uses: dorny/test-reporter@v2.5.0 # TODO bump if: always() with: # Name of the Check Run which will be created diff --git a/.github/actions/test-summary/action.yml b/.github/actions/test-summary/action.yml index 4315c88..63c7f10 100644 --- a/.github/actions/test-summary/action.yml +++ b/.github/actions/test-summary/action.yml @@ -40,7 +40,7 @@ runs: using: composite steps: - name: pytest-results-action - uses: pmeier/pytest-results-action@v0.7.1 # FIXME + uses: pmeier/pytest-results-action@v0.7.2 # TODO bump if: always() with: # A list of JUnit XML files, directories containing the former, and wildcard From 3bb3d965075aca6f908ca0c1e03fa68019235ea8 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sun, 18 Jan 2026 11:41:48 -0600 Subject: [PATCH 2/8] f --- .github/workflows/always.yml | 5 ++++- .github/workflows/test_actions__junit.yml | 5 ++++- .github/workflows/test_actions__publish-test-deltas.yml | 5 ++++- .github/workflows/test_actions__test-reporter.yml | 5 ++++- .github/workflows/test_actions__test-summary.yml | 5 ++++- package.json | 7 ++++--- 6 files changed, 24 insertions(+), 8 deletions(-) diff --git a/.github/workflows/always.yml b/.github/workflows/always.yml index a242dbb..ae68088 100644 --- a/.github/workflows/always.yml +++ b/.github/workflows/always.yml @@ -1,8 +1,11 @@ name: "[C]ontinuous [I]ntegration" on: - push: workflow_dispatch: # Allows you to run this workflow manually from the Actions tab + pull_request: + push: + branches: + - main concurrency: group: ${{ github.ref }}-${{ github.workflow }} diff --git a/.github/workflows/test_actions__junit.yml b/.github/workflows/test_actions__junit.yml index d4473e9..2152d17 100644 --- a/.github/workflows/test_actions__junit.yml +++ b/.github/workflows/test_actions__junit.yml @@ -1,8 +1,11 @@ name: Test actions/junit on: - push: workflow_dispatch: # Allows you to run this workflow manually from the Actions tab + pull_request: + push: + branches: + - main concurrency: group: ${{ github.ref }}-${{ github.workflow }} diff --git a/.github/workflows/test_actions__publish-test-deltas.yml b/.github/workflows/test_actions__publish-test-deltas.yml index d3be670..013fc26 100644 --- a/.github/workflows/test_actions__publish-test-deltas.yml +++ b/.github/workflows/test_actions__publish-test-deltas.yml @@ -1,8 +1,11 @@ name: Test actions/publish-test-deltas on: - push: workflow_dispatch: # Allows you to run this workflow manually from the Actions tab + pull_request: + push: + branches: + - main concurrency: group: ${{ github.ref }}-${{ github.workflow }} diff --git a/.github/workflows/test_actions__test-reporter.yml b/.github/workflows/test_actions__test-reporter.yml index 96e6096..f1a3638 100644 --- a/.github/workflows/test_actions__test-reporter.yml +++ b/.github/workflows/test_actions__test-reporter.yml @@ -1,8 +1,11 @@ name: Test actions/test-reporter on: - push: workflow_dispatch: # Allows you to run this workflow manually from the Actions tab + pull_request: + push: + branches: + - main concurrency: group: ${{ github.ref }}-${{ github.workflow }} diff --git a/.github/workflows/test_actions__test-summary.yml b/.github/workflows/test_actions__test-summary.yml index 73d2241..f98cb93 100644 --- a/.github/workflows/test_actions__test-summary.yml +++ b/.github/workflows/test_actions__test-summary.yml @@ -1,8 +1,11 @@ name: Test actions/test-summary on: - push: workflow_dispatch: # Allows you to run this workflow manually from the Actions tab + pull_request: + push: + branches: + - main concurrency: group: ${{ github.ref }}-${{ github.workflow }} diff --git a/package.json b/package.json index 55c6411..fe4d5ff 100644 --- a/package.json +++ b/package.json @@ -8,11 +8,12 @@ "prettier:check": "npm run _prettier -- --check", "prettier:write": "npm run _prettier -- --write", "lint": "npm run prettier:check", - "style": "npm run prettier:write", - "poststyle": "npm run lint", + "format": "npm run prettier:write", + "style": "npm run format", + "postformat": "npm run lint", "pretest": "npm run lint", "test": "exit 0", - "predev": "npm run style", + "predev": "npm run format", "dev": "npm run test" }, "repository": { From 44e7502d5490446669529ce2a4ca8f776bb280fc Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sun, 18 Jan 2026 11:49:38 -0600 Subject: [PATCH 3/8] f --- .../test_actions__publish-test-deltas.yml | 3 ++- .../workflows/test_actions__test-reporter.yml | 22 +++++++++++++++++++ .../workflows/test_actions__test-summary.yml | 17 ++++++++++++++ assets/test-results/pytest/test-results.xml | 1 + 4 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 assets/test-results/pytest/test-results.xml diff --git a/.github/workflows/test_actions__publish-test-deltas.yml b/.github/workflows/test_actions__publish-test-deltas.yml index 013fc26..2e32e1b 100644 --- a/.github/workflows/test_actions__publish-test-deltas.yml +++ b/.github/workflows/test_actions__publish-test-deltas.yml @@ -64,6 +64,7 @@ jobs: max-parallel: 10 matrix: files_pattern: + - assets/test-results/pytest/test-results.xml - assets/test-results/jest/junit.xml - assets/**/jest/junit.xml - "**/*junit.xml" @@ -73,8 +74,8 @@ jobs: - uses: ./.github/actions/publish-test-deltas with: files_pattern: ${{ matrix.files_pattern }} - comment_mode: off check_name: "actions/publish-test-deltas: files_pattern:${{ matrix.files_pattern }}" + comment_mode: off comment_mode__matrix: needs: default diff --git a/.github/workflows/test_actions__test-reporter.yml b/.github/workflows/test_actions__test-reporter.yml index f1a3638..2c1c0c6 100644 --- a/.github/workflows/test_actions__test-reporter.yml +++ b/.github/workflows/test_actions__test-reporter.yml @@ -53,6 +53,28 @@ jobs: reporter: ${{ env.REPORTER }} files_pattern: ${{ env.FILES_PATTERN }} + files_pattern__matrix: + needs: default + runs-on: ubuntu-latest + strategy: + fail-fast: false + max-parallel: 10 + matrix: + include: + - files_pattern: assets/test-results/jest/junit.xml + reporter: jest-junit + + - files_pattern: assets/test-results/pytest/test-results.xml + reporter: pytest + + name: "files_pattern: ${{ matrix.files_pattern }}" + steps: + - uses: percebus/github-actions-common/.github/actions/checkout@main + - uses: ./.github/actions/test-reporter + with: + files_pattern: ${{ matrix.files_pattern }} + reporter: ${{ matrix.reporter }} + list__matrix: needs: default strategy: diff --git a/.github/workflows/test_actions__test-summary.yml b/.github/workflows/test_actions__test-summary.yml index f98cb93..afef007 100644 --- a/.github/workflows/test_actions__test-summary.yml +++ b/.github/workflows/test_actions__test-summary.yml @@ -43,3 +43,20 @@ jobs: with: title: actions/test-summary:Test Summary @ ${{ matrix.OS }} files_pattern: ${{ env.FILES_PATTERN }} + + files_pattern__matrix: + needs: default + runs-on: ubuntu-latest + strategy: + fail-fast: false + max-parallel: 10 + matrix: + files_pattern: + - assets/test-results/jest/junit.xml + - assets/test-results/pytest/test-results.xml + name: "files_pattern: ${{ matrix.files_pattern }}" + steps: + - uses: percebus/github-actions-common/.github/actions/checkout@main + - uses: ./.github/actions/test-summary + with: + files_pattern: ${{ matrix.files_pattern }} diff --git a/assets/test-results/pytest/test-results.xml b/assets/test-results/pytest/test-results.xml new file mode 100644 index 0000000..de97d40 --- /dev/null +++ b/assets/test-results/pytest/test-results.xml @@ -0,0 +1 @@ + \ No newline at end of file From 44759da3a06529f69f56e9a697cc57949ebccdc9 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sun, 18 Jan 2026 11:50:01 -0600 Subject: [PATCH 4/8] ff --- .github/workflows/always.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/always.yml b/.github/workflows/always.yml index ae68088..34e8504 100644 --- a/.github/workflows/always.yml +++ b/.github/workflows/always.yml @@ -32,7 +32,6 @@ jobs: matrix: language: - actions - - javascript name: "CodeQL: ${{ matrix.language }}" uses: percebus/github-actions-compliance/.github/workflows/codeql_analyze.yml@main From 302ec76ec9291c6e238de53808b2885ce0b87c8f Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sun, 18 Jan 2026 11:53:52 -0600 Subject: [PATCH 5/8] fa --- .github/workflows/test_actions__test-reporter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_actions__test-reporter.yml b/.github/workflows/test_actions__test-reporter.yml index 2c1c0c6..141645a 100644 --- a/.github/workflows/test_actions__test-reporter.yml +++ b/.github/workflows/test_actions__test-reporter.yml @@ -65,7 +65,7 @@ jobs: reporter: jest-junit - files_pattern: assets/test-results/pytest/test-results.xml - reporter: pytest + reporter: python-xunit name: "files_pattern: ${{ matrix.files_pattern }}" steps: From aff9e5d2965e26ba67e414b350f39aeb9b69f063 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sun, 18 Jan 2026 11:55:45 -0600 Subject: [PATCH 6/8] t --- .github/actions/junit/action.yml | 2 +- .github/workflows/test_actions__junit.yml | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/actions/junit/action.yml b/.github/actions/junit/action.yml index baefa54..28d484e 100644 --- a/.github/actions/junit/action.yml +++ b/.github/actions/junit/action.yml @@ -9,7 +9,7 @@ inputs: # test-reporter inputs reporter: description: The test reporter to use. - required: false + required: false # FIXME true default: jest-junit tests_name: diff --git a/.github/workflows/test_actions__junit.yml b/.github/workflows/test_actions__junit.yml index 2152d17..3bf4f65 100644 --- a/.github/workflows/test_actions__junit.yml +++ b/.github/workflows/test_actions__junit.yml @@ -121,3 +121,26 @@ jobs: summary_title: "" publish-test-deltas: ${{ matrix.publish-test-deltas }} comment_mode: off # XXX? + + files_pattern__matrix: + needs: default + runs-on: ubuntu-latest + strategy: + fail-fast: false + max-parallel: 10 + matrix: + include: + - files_pattern: assets/test-results/jest/junit.xml + reporter: jest-junit + + - files_pattern: assets/test-results/pytest/test-results.xml + reporter: python-xunit + + name: "files_pattern: ${{ matrix.files_pattern }}" + steps: + - uses: percebus/github-actions-common/.github/actions/checkout@main + - uses: ./.github/actions/test-reporter + with: + files_pattern: ${{ matrix.files_pattern }} + reporter: ${{ matrix.reporter }} + comment_mode: off From 7343d3faad2b4c1b743443b7782b6afb4e432aac Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sun, 18 Jan 2026 11:58:09 -0600 Subject: [PATCH 7/8] faaa --- .github/workflows/test_actions__junit.yml | 2 +- .github/workflows/test_actions__test-summary.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_actions__junit.yml b/.github/workflows/test_actions__junit.yml index 3bf4f65..9d06dc2 100644 --- a/.github/workflows/test_actions__junit.yml +++ b/.github/workflows/test_actions__junit.yml @@ -139,7 +139,7 @@ jobs: name: "files_pattern: ${{ matrix.files_pattern }}" steps: - uses: percebus/github-actions-common/.github/actions/checkout@main - - uses: ./.github/actions/test-reporter + - uses: ./.github/actions/junit with: files_pattern: ${{ matrix.files_pattern }} reporter: ${{ matrix.reporter }} diff --git a/.github/workflows/test_actions__test-summary.yml b/.github/workflows/test_actions__test-summary.yml index afef007..7a8d402 100644 --- a/.github/workflows/test_actions__test-summary.yml +++ b/.github/workflows/test_actions__test-summary.yml @@ -54,6 +54,7 @@ jobs: files_pattern: - assets/test-results/jest/junit.xml - assets/test-results/pytest/test-results.xml + name: "files_pattern: ${{ matrix.files_pattern }}" steps: - uses: percebus/github-actions-common/.github/actions/checkout@main From d3a8d0fb4181822851304406c8e82ebd522e9b32 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sun, 18 Jan 2026 12:05:10 -0600 Subject: [PATCH 8/8] w --- .github/actions/junit/action.yml | 2 +- .github/actions/test-reporter/action.yml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/actions/junit/action.yml b/.github/actions/junit/action.yml index 28d484e..06eaf28 100644 --- a/.github/actions/junit/action.yml +++ b/.github/actions/junit/action.yml @@ -9,7 +9,7 @@ inputs: # test-reporter inputs reporter: description: The test reporter to use. - required: false # FIXME true + required: false # FIXME? true default: jest-junit tests_name: diff --git a/.github/actions/test-reporter/action.yml b/.github/actions/test-reporter/action.yml index 0c8fe60..e558bf1 100644 --- a/.github/actions/test-reporter/action.yml +++ b/.github/actions/test-reporter/action.yml @@ -77,7 +77,7 @@ runs: # Comma-separated list of paths to test results # Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob) - # All matched result files must be of the same format. + # All matched result files must be of the same format path: ${{ inputs.files_pattern }} # Format of test results. Supported options: @@ -85,10 +85,14 @@ runs: # dotnet-nunit # dotnet-trx # flutter-json + # golang-json # java-junit # jest-junit # mocha-json + # phpunit-junit + # python-xunit # rspec-json + # swift-xunit reporter: ${{ inputs.reporter }} # Allows you to generate only the summary.