From 7e15ea34fb1007d42458dd02f2caa1135ef2626f Mon Sep 17 00:00:00 2001 From: marcio ubuntu Date: Thu, 5 Mar 2026 18:20:12 -0300 Subject: [PATCH] build: remove redundant lint and typecheck from buildspec CI (GitHub Actions) already runs lint, typecheck and tests on every push/PR to main, making the pre_build checks in CodeBuild redundant. Removing them speeds up the deploy pipeline and saves build minutes. --- buildspec.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/buildspec.yml b/buildspec.yml index 278af07..e9fe6a1 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -9,11 +9,6 @@ phases: - corepack prepare pnpm@10 --activate - pnpm install --frozen-lockfile - pre_build: - commands: - - pnpm ci:lint - - pnpm typecheck - build: commands: - pnpm build