nenzen 15329b1d52
All checks were successful
Code style BFF / check (push) Successful in 28s
Add Checkstyle and Prettier to BFF (#65)
This PR adds Checkstyle and Prettier configuration to BFF. It also adds a gitea action to run these.

Reviewed-on: #65
Reviewed-by: Andreas Svanberg <andreass@dsv.su.se>
Co-authored-by: nenzen <nenzen@dsv.su.se>
Co-committed-by: nenzen <nenzen@dsv.su.se>
2026-01-13 13:17:18 +01:00

22 lines
435 B
YAML

name: Code style BFF
on:
pull_request:
push:
branches:
- main
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: ./mvnw validate --batch-mode