This commit is contained in:
Jorrin 2024-03-31 15:41:57 +02:00
parent 761de36e3b
commit cce3b810c3
2 changed files with 1 additions and 2 deletions

View File

@ -27,7 +27,7 @@ jobs:
cache: "pnpm"
- name: Install packages
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile && node ./node_modules/puppeteer/install.mjs
env:
PUPPETEER_SKIP_DOWNLOAD: true

View File

@ -16,7 +16,6 @@ try {
browser = await puppeteer.launch({
headless: true,
args: ['--no-sandbox', '--disable-setuid-sandbox'],
slowMo: 50,
});
const page = await browser.newPage();
await page.goto(server.resolvedUrls.local[0]);