We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48c75af commit 6b3bebbCopy full SHA for 6b3bebb
.github/workflows/verify-browser.yml
@@ -14,6 +14,12 @@ jobs:
14
steps:
15
- uses: actions/checkout@v4
16
17
+ # TODO: remove when GitHub fixes this https://github.com/actions/runner-images/issues/10015
18
+ # (this workaround is practically the same what Playwright did in https://github.com/microsoft/playwright/pull/34238/files)
19
+ - name: Workaround for Chrome sandbox issue in Ubuntu 24.04
20
+ run: |
21
+ sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
22
+
23
- name: Setup Node 20
24
uses: actions/setup-node@v4
25
env:
0 commit comments