All checks were successful
Code style BFF / check (push) Successful in 28s
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>
22 lines
435 B
YAML
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
|