···2323 /* Opt out of parallel tests on CI. */
2424 workers: process.env.CI ? 1 : undefined,
2525 /* Reporter to use. See https://playwright.dev/docs/test-reporters */
2626- reporter: 'html',
2626+ reporter: process.env.CI ? 'github' : 'list',
2727 /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2828 use: {
2929 /* Base URL to use in actions like `await page.goto('/')`. */