From d84a9186123e27e506fa875f8702f35e024b6d09 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 17 Jul 2026 00:13:05 +0000 Subject: [PATCH] ci: drop asset pipeline steps removed in the slim down The assets:build and assets:check scripts were deleted along with the asset pipeline, but two CI jobs still called them, failing every run at the missing script. Also removes the stale gitignore entries for the generated assets and manifest and the last orphaned local files. --- .github/workflows/ci.yml | 3 --- .gitignore | 5 ----- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffcb0d7..a54b2f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,6 @@ jobs: - run: npm ci - run: npx prisma generate - - run: npm run assets:build - - run: npm run assets:check - run: npm run lint - run: npm run build @@ -45,7 +43,6 @@ jobs: - run: npm ci - run: npx prisma generate - - run: npm run assets:build - run: npm run test:unit integration-tests: diff --git a/.gitignore b/.gitignore index 0279025..c88c119 100644 --- a/.gitignore +++ b/.gitignore @@ -39,8 +39,3 @@ next-env.d.ts # uploaded content /data/uploads - -# generated assets (rebuilt from design/exports-raw via assets:build) -/public/assets/ui/ -# generated manifest -/src/ui/assets/manifest.ts