Replies: 1 comment
|
https://github.com/GoogleChrome/lighthouse-ci/blob/main/docs/configuration.md#desktop-emulation |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Is there a way to set lighthouse to run in desktop mode in the ci file?
If so, how?
ci: collect: # Puppeteer is used to login puppeteerScript: puppeteer-script.js puppeteerLaunchOptions: args: - '--no-sandbox' - '--headless' - '--ignore-certificate-errors' numberOfRuns: 1 settings: onlyCategories: - accessibility - best-practices - performance assert: preset: lighthouse:recommended assertions: categories:performance: - error - minScore: .5 categories:accessibility: - error - minScore: .85 categories:best-practices: - error - minScore: .8All reactions