fix: Gradle task dependency, add java to frontend.yaml because of openapi

This commit is contained in:
2025-11-15 08:15:41 +01:00
parent 40ec2736c9
commit cc3db21fbd
2 changed files with 7 additions and 0 deletions

View File

@@ -29,6 +29,12 @@ jobs:
with: with:
node-version: '22.16.0' node-version: '22.16.0'
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Setup pnpm - name: Setup pnpm
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4
with: with:

View File

@@ -103,3 +103,4 @@ task generate_legalconsenthub_server(type: org.openapitools.generator.gradle.plu
} }
compileKotlin.dependsOn(tasks.generate_legalconsenthub_server) compileKotlin.dependsOn(tasks.generate_legalconsenthub_server)
runKtlintCheckOverMainSourceSet.dependsOn(generate_legalconsenthub_server)