diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 32992b1..64c2e5c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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 diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts index fc8a573..aae0409 100644 --- a/frontend/playwright.config.ts +++ b/frontend/playwright.config.ts @@ -30,8 +30,9 @@ export default defineConfig({ ], webServer: { - command: 'bun run start', + command: 'cd .. && just start', url: 'http://localhost:4200', reuseExistingServer: !process.env.CI, }, -}); \ No newline at end of file +}); +