Firq
8c425d8690
All checks were successful
/ astro-check (push) Successful in 12s
/ get-version (push) Successful in 2s
/ check-tag (push) Successful in 3s
/ checking (push) Successful in 11s
/ create-release (push) Successful in 6s
/ auto-deploy-dockge (push) Successful in 15s
/ build-site (push) Successful in 1m7s
/ run-unlighthouse (push) Successful in 0s
24 lines
461 B
TypeScript
24 lines
461 B
TypeScript
export default {
|
|
puppeteerOptions: {
|
|
args: [
|
|
"--no-sandbox",
|
|
"--disable-setuid-sandbox"
|
|
],
|
|
},
|
|
puppeteerClusterOptions: {
|
|
maxConcurrency: 1
|
|
},
|
|
ci: {
|
|
budget: 50,
|
|
buildStatic: true,
|
|
},
|
|
scanner: {
|
|
device: 'mobile',
|
|
sitemap: true,
|
|
throttle: false,
|
|
dynamicSampling: false,
|
|
samples: 3,
|
|
},
|
|
outputPath: "unlighthouse-reports",
|
|
}
|