Add Checkstyle and Prettier to BFF #65

Merged
stne3960 merged 15 commits from chore/checkstyle into main 2026-01-13 13:17:19 +01:00
Showing only changes of commit 33938f7f70 - Show all commits

View File

@ -0,0 +1,19 @@
name: Code style BFF
on:
- pull_request
- push
jobs:
check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: bff
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 25
cache: maven
- name: Run checkstyle and prettier
run: mvn validate --batch-mode