chore: update check-types command to typecheck (aligns with nuxt usage)

This commit is contained in:
Matthias 2024-10-17 07:02:51 +02:00
parent d8fd005722
commit 31468f7716
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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",