File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 71
71
name : playwright-report-pages
72
72
path : special-pages/playwright-report
73
73
retention-days : 5
74
+ - uses : actions/upload-artifact@v4
75
+ if : always()
76
+ with :
77
+ name : playwright-report-injected
78
+ path : injected/playwright-report
79
+ retention-days : 5
74
80
- name : Build docs
75
81
run : npm run docs
76
82
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ export default defineConfig({
90
90
retries : process . env . CI ? 2 : 0 ,
91
91
/* Opt out of parallel tests on CI. */
92
92
workers : process . env . CI ? 1 : undefined ,
93
- reporter : process . env . CI ? 'github' : [ [ ' html', { open : 'never' } ] ] ,
93
+ reporter : ' html',
94
94
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
95
95
webServer : {
96
96
reuseExistingServer : true ,
@@ -105,5 +105,6 @@ export default defineConfig({
105
105
baseURL : 'http://localhost:3220/' ,
106
106
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
107
107
trace : 'on-first-retry' ,
108
+ video : { mode : 'on-first-retry' } ,
108
109
} ,
109
110
} ) ;
You can’t perform that action at this time.
0 commit comments