From 48eb0388273358182ac85141c53c573f20995d99 Mon Sep 17 00:00:00 2001 From: Ritesh Ghosh Date: Sun, 25 May 2025 22:39:30 +0530 Subject: [PATCH] ci: update type n format workflow --- .../{lint-&-format-check.yml => type-n-format-check.yml} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) rename .github/workflows/{lint-&-format-check.yml => type-n-format-check.yml} (74%) diff --git a/.github/workflows/lint-&-format-check.yml b/.github/workflows/type-n-format-check.yml similarity index 74% rename from .github/workflows/lint-&-format-check.yml rename to .github/workflows/type-n-format-check.yml index 741370a..c0925fe 100644 --- a/.github/workflows/lint-&-format-check.yml +++ b/.github/workflows/type-n-format-check.yml @@ -1,4 +1,4 @@ -name: "Lint and format check" +name: "Type and format check" on: push: @@ -22,8 +22,9 @@ jobs: - name: Install deps run: npm i - - name: Check lint - run: npm run lint + - name: Check types + # This step checks for TypeScript type errors + run: npm run typecheck - name: Check prettier run: npm run format:check