From 0b58e18c731f719d54eefcd269cf54f47f2452de Mon Sep 17 00:00:00 2001 From: kevin Date: Tue, 12 Nov 2024 15:57:33 +0000 Subject: [PATCH] Fix action and playwright config --- .forgejo/workflows/build.yaml | 4 ++-- playwright.config.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 0a923b5..d7a1cb4 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -32,7 +32,7 @@ jobs: run: npx playwright install --with-deps - run: npm test name: Test project - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 name: Upload Playwright report if: ${{ !cancelled() }} with: @@ -41,7 +41,7 @@ jobs: retention-days: 30 - run: npm run build-storybook name: Build storybook - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 name: Upload build directories with: name: build-artifacts diff --git a/playwright.config.ts b/playwright.config.ts index d76ea26..e19956f 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -5,6 +5,6 @@ export default defineConfig({ command: 'npm run build && npm run preview', port: 4173 }, - + reporter: [['html', { open: 'never' }], ['line']], testDir: 'e2e' });