From 2f667357af45c15d022af6f7404c79c673d2db37 Mon Sep 17 00:00:00 2001 From: ThatGuySam Date: Sun, 15 Mar 2026 13:00:21 -0500 Subject: [PATCH] fix(ci): run netlify build in node 24 check The generic > doesitarm@1.0.0 test /Users/athena/Code/doesitarm > vitest run Running Astro Config File RUN v4.1.0 /Users/athena/Code/doesitarm Test Files 7 passed (7) Tests 20 passed | 3 todo (23) Start at 13:00:20 Duration 1.76s (transform 317ms, setup 138ms, import 1.23s, tests 2.55s, environment 2ms) entrypoint assumes artifacts that only exist after the repo's full Netlify-style build. Run the real end-to-end Netlify build in GitHub Actions instead so the hosted Node 24 check matches the supported build surface. --- .github/workflows/run-ava-tests.js.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run-ava-tests.js.yml b/.github/workflows/run-ava-tests.js.yml index 062503a..0c388af 100644 --- a/.github/workflows/run-ava-tests.js.yml +++ b/.github/workflows/run-ava-tests.js.yml @@ -34,5 +34,4 @@ jobs: node-version: ${{ matrix.node-version }} cache: pnpm - run: pnpm install --frozen-lockfile - - run: pnpm build - - run: pnpm test + - run: pnpm netlify-build