From 7f78fdc293985631cf3d6c0322d5af834467285a Mon Sep 17 00:00:00 2001 From: Benoit Lacelle Date: Thu, 19 Sep 2024 11:53:38 +0400 Subject: [PATCH] Add ./js as workingDirectory for playwright --- .github/workflows/playwright.yml | 5 +++-- server/src/main/resources/application.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index b670c7e..0c65441 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -13,13 +13,14 @@ jobs: - uses: actions/setup-node@v4 with: node-version: lts/* - - name: Go to JS folder - run: cd js - name: Install dependencies + working-directory: ./js run: npm ci - name: Install Playwright Browsers + working-directory: ./js run: npx playwright install --with-deps - name: Run Playwright tests + working-directory: ./js run: npx playwright test - uses: actions/upload-artifact@v4 if: always() diff --git a/server/src/main/resources/application.yml b/server/src/main/resources/application.yml index a5a66eb..082b631 100644 --- a/server/src/main/resources/application.yml +++ b/server/src/main/resources/application.yml @@ -28,7 +28,7 @@ spring: logging: level: org.springframework.security: INFO - org.springframework.web.reactive: DEBUG + org.springframework.web.reactive: INFO eu.solven.kumite.app.webflux.KumiteExceptionRoutingWebFilter: DEBUG eu.solven.kumite.app.webflux.KumiteWebExceptionHandler: DEBUG