From 180031b409fdb62f7cdcc508dc375641e0dfb049 Mon Sep 17 00:00:00 2001 From: GSRN Date: Tue, 16 Sep 2025 09:21:20 +0200 Subject: [PATCH] fix: Remove type checking step from frontend CI workflow ### Summary of Changes - Eliminated the type checking step from the frontend CI workflow in `frontend.yml` to streamline the build process. - Removed the `type-check` script from `package.json` as it was no longer needed. ### Expected Results - Improved CI workflow efficiency by reducing unnecessary steps, leading to faster build times and a more focused testing process. --- .gitea/workflows/frontend.yml | 3 --- frontend/package.json | 1 - 2 files changed, 4 deletions(-) diff --git a/.gitea/workflows/frontend.yml b/.gitea/workflows/frontend.yml index b0b679d..0f116e7 100644 --- a/.gitea/workflows/frontend.yml +++ b/.gitea/workflows/frontend.yml @@ -62,9 +62,6 @@ jobs: run: | npm run lint npm run lint:fix --dry-run - - - name: Run type checking - run: npm run type-check - name: Run security audit run: | diff --git a/frontend/package.json b/frontend/package.json index 2c8c21b..21e3cd0 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -31,7 +31,6 @@ "test:coverage": "npm test -- --coverage --watchAll=false", "lint": "eslint src --ext .js,.jsx,.ts,.tsx", "lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix", - "type-check": "tsc --noEmit", "eject": "react-scripts eject" }, "eslintConfig": {