File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
build :
12
- runs-on : ubuntu-22.04
12
+ runs-on : ubuntu-latest
13
13
strategy :
14
14
matrix :
15
15
node-version : [ 18.x, 20.x, 22.x ]
Original file line number Diff line number Diff line change @@ -96,14 +96,15 @@ export const config: WebdriverIOConfig = {
96
96
97
97
'goog:chromeOptions' : {
98
98
args : [
99
- '--disable-web-security' ,
100
- '--allow-file-access-from-files' ,
101
- '--allow-file-access' ,
102
- '--disable-infobars' ,
103
- '--ignore-certificate-errors' ,
104
- '--disable-gpu' ,
105
- '--window-size=1024x768' ,
106
- ] . concat ( headless ? [ '--headless' ] : [ ] ) ,
99
+ 'no-sandbox' ,
100
+ 'disable-web-security' ,
101
+ 'allow-file-access-from-files' ,
102
+ 'allow-file-access' ,
103
+ 'disable-infobars' ,
104
+ 'ignore-certificate-errors' ,
105
+ 'disable-gpu' ,
106
+ 'window-size=1024x768' ,
107
+ ] . concat ( headless ? [ 'headless' ] : [ ] ) ,
107
108
}
108
109
} ] ,
109
110
//
You can’t perform that action at this time.
0 commit comments