Skip to content

Commit

Permalink
Fix template verification
Browse files Browse the repository at this point in the history
  • Loading branch information
Shpota committed Dec 18, 2024
1 parent 62bcaa9 commit afc5276
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/verify-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:
const puppeteer = require('puppeteer');
(async () => {
try {
const browser = await puppeteer.launch({headless: "new"});
const browser = await puppeteer.launch({
headless: "new",
args: ['--no-sandbox', '--disable-setuid-sandbox']
});
const page = await browser.newPage();
await page.goto('http://localhost:8080');
page.on('console', (message) => {
Expand Down

0 comments on commit afc5276

Please sign in to comment.