We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10055bf commit 03b40ceCopy full SHA for 03b40ce
.github/workflows/test.yml
@@ -8,6 +8,13 @@ jobs:
8
test:
9
runs-on: ubuntu-latest
10
steps:
11
+ # Starting with Ubuntu 23+, a security feature prevents running Puppeteer
12
+ # by default. It needs to be disabled. Using the "easiest" option, see:
13
+ # https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md
14
+ # https://github.com/puppeteer/puppeteer/pull/13196/files
15
+ - name: Disable AppArmor
16
+ run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
17
+
18
- uses: actions/checkout@v3
19
- uses: actions/setup-node@v3
20
with:
0 commit comments