Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/springwolf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
check_name: test-core
require_tests: true
report_paths: '**/build/test-results/test/TEST-*.xml'
annotate_only: github.event.pull_request.head.repo.full_name != github.repository # for forks

- name: Publish package
if: github.ref == 'refs/heads/master'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/springwolf-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
check_name: test-plugin-${{ matrix.plugin }}-junit
require_tests: true
report_paths: '**/build/test-results/test/TEST-*.xml'
annotate_only: github.event.pull_request.head.repo.full_name != github.repository # for forks

- name: Run e2e tests
run: ./gradlew -p springwolf-examples/e2e pnpm_run_install_deps test
Expand All @@ -80,6 +81,7 @@ jobs:
check_name: test-plugin-${{ matrix.plugin }}-e2e
require_tests: true
report_paths: '**/test-results/junit.xml'
annotate_only: github.event.pull_request.head.repo.full_name != github.repository # for forks
- uses: actions/upload-artifact@v5
if: always()
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/springwolf-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
check_name: test-ui-jest
require_tests: true
report_paths: '**/build/test-results/junit.xml'
annotate_only: github.event.pull_request.head.repo.full_name != github.repository # for forks

- name: Build
run: ./gradlew -p ${{ env.project }} build
Expand Down
Loading