Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
silesky committed Apr 8, 2024
1 parent c640c87 commit 92109f2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: browser-actions/setup-chrome@v1
with:
chrome-version: 120
- uses: actions/setup-node@v3
with:
node-version: 16
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ export const config: Options.Testrunner = {
maxInstances: 1,
browserName: 'chrome',
'goog:chromeOptions': {
args: [...(isCI ? ['headless'] : []), 'disable-gpu'],
args: [
...(isCI ? ['headless'] : []),
'disable-gpu',
'user-data-dir=/tmp',
],
},
acceptInsecureCerts: true,
},
Expand Down

0 comments on commit 92109f2

Please sign in to comment.