Skip to content
Merged
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
21 changes: 21 additions & 0 deletions .github/workflows/service-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: service-playground-ci

on:
push:
branches:
- main
paths:
- "services/playground/**"
- ".github/workflows/service-playground.yml"
Expand All @@ -10,9 +12,17 @@ on:
- "services/playground/**"
- ".github/workflows/service-playground.yml"

permissions:
contents: read
actions: read
checks: write

jobs:
test:
runs-on: ubuntu-latest
env:
# GitHub is deprecating the Node.js 20 runtime for actions; force Node.js 24 now to avoid warnings.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
defaults:
run:
working-directory: .
Expand All @@ -26,3 +36,14 @@ jobs:
- name: Test
run: ./mvnw -f services/playground/pom.xml -B test

- name: Test Report (JUnit)
if: ${{ !cancelled() }}
uses: dorny/test-reporter@v2
with:
name: JUnit Tests
path: services/playground/target/surefire-reports/TEST-*.xml
reporter: java-junit
fail-on-empty: "false"
max-annotations: "50"
use-actions-summary: "true"

Loading