From e8c26d5bdb5d37485022eb4fcfcf2baeffa06d04 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Tue, 4 Mar 2025 11:48:59 +0000 Subject: [PATCH] ci: add new command for vite ecosystem CI (#13357) --- packages/integrations/cloudflare/package.json | 1 + packages/integrations/netlify/package.json | 1 + packages/integrations/node/package.json | 1 + packages/integrations/vercel/package.json | 1 + 4 files changed, 4 insertions(+) diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index 9e6d3e7b37..058d26bcd2 100644 --- a/packages/integrations/cloudflare/package.json +++ b/packages/integrations/cloudflare/package.json @@ -30,6 +30,7 @@ ], "scripts": { "build": "astro-scripts build \"src/**/*.ts\" && tsc", + "build:ci": "astro-scripts build \"src/**/*.ts\"", "test": "astro-scripts test \"test/**/*.test.js\"" }, "dependencies": { diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json index ac9af4be5d..b823043421 100644 --- a/packages/integrations/netlify/package.json +++ b/packages/integrations/netlify/package.json @@ -30,6 +30,7 @@ ], "scripts": { "build": "astro-scripts build \"src/**/*.ts\" && tsc", + "build:ci": "astro-scripts build \"src/**/*.ts\"", "test": "pnpm run test-fn && pnpm run test-static", "test-fn": "astro-scripts test \"test/functions/*.test.js\"", "test-static": "astro-scripts test \"test/static/*.test.js\"", diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json index 5a0d630f10..b0cf466275 100644 --- a/packages/integrations/node/package.json +++ b/packages/integrations/node/package.json @@ -28,6 +28,7 @@ ], "scripts": { "build": "astro-scripts build \"src/**/*.ts\" && tsc", + "build:ci": "astro-scripts build \"src/**/*.ts\"", "test": "astro-scripts test \"test/**/*.test.js\"" }, "dependencies": { diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 611761ecde..e7891f4179 100644 --- a/packages/integrations/vercel/package.json +++ b/packages/integrations/vercel/package.json @@ -42,6 +42,7 @@ ], "scripts": { "build": "astro-scripts build \"src/**/*.ts\" && tsc", + "build:ci": "astro-scripts build \"src/**/*.ts\"", "test": "astro-scripts test --timeout 50000 \"test/**/!(hosted).test.js\"", "test:hosted": "astro-scripts test --timeout 30000 \"test/hosted/*.test.js\"" },