diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36a73f82..1f114159 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: run: pnpm run lint-ci - name: Run type check - run: pnpm run check-types + run: pnpm run typecheck - name: Run Tests run: pnpm run test:unit diff --git a/package.json b/package.json index da95974b..2561f4a5 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "build": "vite build", "preview": "vite preview", "test:unit": "vitest", - "check-types": "vue-tsc --noEmit", + "typecheck": "vue-tsc --noEmit", "lint": "eslint src tests e2e", "lint-ci": "eslint --no-fix src tests e2e", "test:e2e": "playwright test",