Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Sep 27, 2024
1 parent aa403be commit 276eea3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions puppeteer.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
module.exports = {
skipDownload: true,
chrome: {
version: 'latest',
// Bug? `latest` version can't be launched
// version: 'latest',
skipDownload: false,
},
'chrome-headless-shell': {
version: 'latest',
// version: 'latest',

Check failure on line 12 in puppeteer.config.cjs

View workflow job for this annotation

GitHub Actions / Node.js 20

Comments should not begin with a lowercase character.

Check failure on line 12 in puppeteer.config.cjs

View workflow job for this annotation

GitHub Actions / Node.js 18

Comments should not begin with a lowercase character.
skipDownload: false,
},
firefox: {
version: 'latest',
// version: 'latest',

Check failure on line 16 in puppeteer.config.cjs

View workflow job for this annotation

GitHub Actions / Node.js 20

Comments should not begin with a lowercase character.

Check failure on line 16 in puppeteer.config.cjs

View workflow job for this annotation

GitHub Actions / Node.js 18

Comments should not begin with a lowercase character.
skipDownload: false,
},
};

0 comments on commit 276eea3

Please sign in to comment.