From f182ee21326b0c9c83d5dae70e31140c3a2daea7 Mon Sep 17 00:00:00 2001 From: Doug Fennell Date: Sun, 19 Oct 2025 15:44:19 -0500 Subject: [PATCH] conformance(pages): fix rollup native missing in Pages workflow --- .github/workflows/publish-badges.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish-badges.yml b/.github/workflows/publish-badges.yml index 77f62a7..262b5fa 100644 --- a/.github/workflows/publish-badges.yml +++ b/.github/workflows/publish-badges.yml @@ -29,6 +29,9 @@ jobs: - name: Install dependencies run: npm ci --no-audit --no-fund + - name: Ensure Rollup native binary is present (linux-x64) + run: npm i --no-save @rollup/rollup-linux-x64-gnu || true + - name: Build project run: npm run build