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