From ece72448b5c30c84ffc1d8ce0aada97b771c1c02 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Fri, 5 Apr 2024 16:54:57 +0300 Subject: [PATCH 1/2] chore: add test:citgm command that would run tests without caching --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index b68cdf1b44b7..b607afc83a5e 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "format:imports": "biome check --apply .", "format:imports:ci": "biome ci .", "test": "turbo run test --concurrency=1 --filter=astro --filter=create-astro --filter=\"@astrojs/*\"", + "test:citgm": "pnpm run test -- --force", "test:match": "cd packages/astro && pnpm run test:match", "test:unit": "cd packages/astro && pnpm run test:unit", "test:unit:match": "cd packages/astro && pnpm run test:unit:match", From 784e8ed6929d8d3b8da24fcdb2eee91ddf976f18 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:00:45 +0300 Subject: [PATCH 2/2] adding build ci with no cache --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index b607afc83a5e..5885481522e7 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "release": "pnpm run build && changeset publish", "build": "turbo run build --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --filter=\"@benchmark/*\"", "build:ci": "turbo run build:ci --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --filter=\"@benchmark/*\"", + "build:ci:no-cache": "pnpm run build:ci -- --force", "build:examples": "turbo run build --filter=\"@example/*\"", "dev": "turbo run dev --concurrency=40 --parallel --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --filter=\"@benchmark/*\"", "format": "pnpm run format:code && pnpm run format:imports",