Keep device listings available in clean builds

The Netlify validation job imports site listings before generated static device JSON exists in a clean checkout, so keep the small device table in tracked source and use it as the route fallback.

Constraint: static/device-list.json is ignored generated output and is absent in GitHub-hosted clean runners
Rejected: Force-add static/device-list.json | keeps generated output under source control
Confidence: high
Scope-risk: narrow
Directive: Keep disabled device rows in the fallback source but filter them from routable listings
Tested: pnpm run with-env vitest ./test/prebuild/site-listings.test.js
Tested: pnpm netlify-build reached Astro build after passing prebuild tests
Not-tested: Full local netlify-build completion blocked by unrelated uncommitted scanner worker build failure
This commit is contained in:
Sam Carlton 2026-04-25 15:46:39 -05:00
parent 3d19c60670
commit d1f49267c0
3 changed files with 142 additions and 7 deletions

View file

@ -7,9 +7,9 @@ import {
describe( 'site listing fallbacks', () => {
it( 'loads known devices from the bundled device list', () => {
expect( getDeviceListingBySlug( 'm1-imac' ) ).toMatchObject({
name: 'M1 iMac',
endpoint: '/device/m1-imac'
expect( getDeviceListingBySlug( '2023-m3-imac' ) ).toMatchObject({
name: '2023 M3 iMac',
endpoint: '/device/2023-m3-imac'
})
})