We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebf1e81 commit 64163e9Copy full SHA for 64163e9
.github/workflows/test.yml
@@ -9,6 +9,7 @@ on:
9
jobs:
10
test:
11
name: Test on ${{ matrix.os }} using Node.js v${{ matrix.node }}
12
+ continue-on-error: true
13
strategy:
14
matrix:
15
os: [windows-latest, macos-latest, ubuntu-latest]
@@ -29,5 +30,12 @@ jobs:
29
30
with:
31
version: latest
32
run_install: true
33
+ # Prevent `No usable sandbox!` error on Ubuntu. See:
34
+ # https://github.com/puppeteer/puppeteer/issues/13595
35
+ - name: Disable AppArmor
36
+ if: ${{ matrix.os == ubuntu-latest }}
37
+ run:
38
+ echo 0 | sudo tee
39
+ /proc/sys/kernel/apparmor_restrict_unprivileged_userns
40
- name: Run tests
41
run: pnpm test
0 commit comments