From 830011206f641eb230f5480fdd8f7561fd0ec7aa Mon Sep 17 00:00:00 2001 From: Taj Deluca Date: Fri, 27 Dec 2024 22:05:52 +0000 Subject: [PATCH] Add more relevant reporter on CI (#72) --- README.md | 2 +- test/integration/playwright.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index df72f69..b177c6c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # portfolio -![Beta CI](https://github.com/tajdeluca/portfolio/workflows/Beta%20CI/badge.svg) ![Production CI](https://github.com/tajdeluca/portfolio/workflows/Production%20CI/badge.svg?branch=master) +![CI/CD](https://github.com/tajdeluca/portfolio/workflows/Deployment/badge.svg) ## Build Setup diff --git a/test/integration/playwright.config.ts b/test/integration/playwright.config.ts index f7545af..605e7e3 100644 --- a/test/integration/playwright.config.ts +++ b/test/integration/playwright.config.ts @@ -28,7 +28,7 @@ export default defineConfig({ retries: process.env.CI ? 2 : 0, workers: '50%', /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: 'html', + reporter: process.env.CI ? 'github' : 'html', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */