Merge pull request 'ci: add ubuntu-latest to workflow jobs configuration' (!130) from fix-pipelines into main

Reviewed-on: #130
This commit is contained in:
Jan-Marlon Leibl 2025-04-23 06:58:54 +00:00
commit 2aaf79410d
No known key found for this signature in database
GPG key ID: 944223E4D46B7412

View file

@ -26,6 +26,7 @@ jobs:
- '.gitea/workflows/**'
checkstyle:
runs-on: ubuntu-latest
name: "Checkstyle Main"
needs: changed_files
if: ${{ needs.changed_files.outputs.backend == 'true' || needs.changed_files.outputs.workflow == 'true' }}
@ -74,6 +75,7 @@ jobs:
run: gradle --stop
eslint:
runs-on: ubuntu-latest
name: eslint
needs: changed_files
if: ${{ needs.changed_files.outputs.frontend == 'true' || needs.changed_files.outputs.workflow == 'true' }}
@ -102,6 +104,7 @@ jobs:
bun run lint
prettier:
runs-on: ubuntu-latest
name: prettier
needs: changed_files
if: ${{ needs.changed_files.outputs.frontend == 'true' || needs.changed_files.outputs.workflow == 'true' }}
@ -130,6 +133,7 @@ jobs:
bun run format:check
test-build:
runs-on: ubuntu-latest
name: test-build
needs: changed_files
if: ${{ needs.changed_files.outputs.frontend == 'true' || needs.changed_files.outputs.workflow == 'true' }}