Skip to content

Commit 578ce0e

Browse files
authored
Fix puppeteer sandbox issue (#1077)
Force merging for the rules to apply in basic workflows
1 parent 532be7c commit 578ce0e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/e2e-home-server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
run: for i in {1..30}; do curl -s http://localhost:3123/healthcheck && break || sleep 1; done
9595

9696
- name: Run E2E Test Suite
97-
run: yarn dlx mocha-headless-chrome --timeout 3600000 -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }}
97+
run: yarn dlx mocha-headless-chrome --timeout 3600000 -a no-sandbox -a disable-setuid-sandbox -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }}
9898

9999
- name: Archive failed run logs
100100
if: ${{ failure() }}

.github/workflows/e2e-self-hosted.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: docker/is-available.sh http://localhost:3123 $(pwd)/logs
5858

5959
- name: Run E2E Test Suite
60-
run: yarn dlx mocha-headless-chrome --timeout 3600000 -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }}
60+
run: yarn dlx mocha-headless-chrome --timeout 3600000 -a no-sandbox -a disable-setuid-sandbox -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }}
6161

6262
- name: Archive failed run logs
6363
if: ${{ failure() }}

0 commit comments

Comments
 (0)