mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
0c64c5867b
Compress with brotli ahead of time in CI, just like we do with zopfli for gzip_static Update hintrc to check for brotli compression. Update lighthouse config to throttle CPU some more since brotli decompression can be heavier.
69 lines
2.3 KiB
YAML
69 lines
2.3 KiB
YAML
---
|
|
ci:
|
|
assert:
|
|
preset: lighthouse:recommended
|
|
assertions:
|
|
performance-budget: "error"
|
|
render-blocking-resources:
|
|
- warn
|
|
# the CSS file.
|
|
# My site doesn't use JS so it doesn't use the recommended async hack
|
|
- maxLength: 1
|
|
timing-budget: "off" # buggy; manually use the below assertions instead
|
|
# https://seirdy.one/2020/11/23/website-best-practices.html#about-lazy-loading
|
|
speed-index:
|
|
- warn
|
|
- maxNumericValue: 2000
|
|
largest-contentful-paint:
|
|
- warn
|
|
- maxNumericValue: 2000
|
|
first-contentful-paint:
|
|
- warn
|
|
- maxNumericValue: 2000
|
|
first-meaningful-paint:
|
|
- warn
|
|
- maxNumericValue: 2000
|
|
total-blocking-time:
|
|
- warn
|
|
- maxNumericValue: 0
|
|
cumulative-layout-shift:
|
|
- warn
|
|
- maxNumericValue: 0
|
|
robots-txt: "off" # Lighthouse bug: CSP makes this impossible
|
|
canonical: "off" # staging site has no rel=canonical
|
|
is-crawlable: "off" # staging site isn't crawlable
|
|
service-worker: "off" # not a PWA
|
|
works-offline: "off" # not a PWA
|
|
installable-manifest: "off" # not a PWA
|
|
splash-screen: "off" # not a PWA
|
|
themed-omnibox: "off" # not a PWA
|
|
offline-start-url: "off" # not a pwa
|
|
offscreen-images: "off" # antipattern: see my article on best practices for textual websites
|
|
collect:
|
|
method: node
|
|
settings:
|
|
budgetPath: budget.json
|
|
chromeFlags: "--disable-gpu --no-sandbox --disable-extensions --no-first-run --headless"
|
|
skipAudits:
|
|
- robots-txt
|
|
- canonical
|
|
- is-crawlable
|
|
- service-worker
|
|
- works-offline
|
|
- installable-manifest
|
|
- splash-screen
|
|
- themed-omnibox
|
|
- offline-start-url
|
|
- offscreen-images
|
|
throttling:
|
|
cpuSlowdownMultiplier: 4.2 # seems about right on builds.sr.ht
|
|
throttlingMethod: devtools
|
|
url:
|
|
- https://staging.seirdy.one/
|
|
- https://staging.seirdy.one/about.html
|
|
- https://staging.seirdy.one/2020/11/23/website-best-practices.html
|
|
numberOfRuns: 3
|
|
upload:
|
|
outputDir: lighthouse-reports
|
|
reportFilenamePattern: lighthouse-report-%%PATHNAME%%.%%EXTENSION%%
|
|
target: filesystem
|