Compare commits

..

1 commit

Author SHA1 Message Date
6462111850 chore: Add some tests
Some checks failed
CI / Get Changed Files (pull_request) Successful in 8s
Pull Request Labeler / labeler (pull_request_target) Successful in 7s
Label PRs based on size / Check PR size (pull_request) Successful in 14s
Claude PR Review / claude-code (pull_request) Successful in 28s
CI / eslint (pull_request) Successful in 46s
CI / oxlint (pull_request) Successful in 50s
CI / Docker backend validation (pull_request) Successful in 37s
CI / prettier (pull_request) Successful in 1m10s
CI / Docker frontend validation (pull_request) Successful in 1m31s
CI / Checkstyle Main (pull_request) Successful in 1m37s
CI / test-build (pull_request) Successful in 1m43s
CI / Backend Tests (pull_request) Successful in 2m35s
CI / Playwright (pull_request) Failing after 2m13s
2025-06-04 12:59:26 +02:00
2 changed files with 8 additions and 2 deletions

View file

@ -173,6 +173,10 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "temurin" # See 'Supported distributions' for available options
java-version: "23"
- name: Install bun
uses: oven-sh/setup-bun@v2
- uses: actions/cache@v4
@ -183,6 +187,7 @@ jobs:
key: ${{ runner.os }}-bun-
restore-keys: |
${{ runner.os }}-bun-
- uses: extractions/setup-just@v3
- name: Install dependencies
run: |
cd frontend

View file

@ -30,8 +30,9 @@ export default defineConfig({
],
webServer: {
command: 'bun run start',
command: 'cd .. && just start',
url: 'http://localhost:4200',
reuseExistingServer: !process.env.CI,
},
});
});