From 2514abeb5b315772a49746b348e5641da3c91fce Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Fri, 25 Oct 2024 17:28:19 +0200 Subject: [PATCH] chore(github): put back docs typecheck --- .github/workflows/ci-v3.yml | 4 ---- package.json | 3 +-- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci-v3.yml b/.github/workflows/ci-v3.yml index d5f649d4..4d0019ad 100644 --- a/.github/workflows/ci-v3.yml +++ b/.github/workflows/ci-v3.yml @@ -49,10 +49,6 @@ jobs: - name: Typecheck run: pnpm run typecheck - - name: Docs typecheck - run: pnpm run docs:typecheck - continue-on-error: true - - name: Test run: pnpm run test diff --git a/package.json b/package.json index de18083f..d669d9a5 100644 --- a/package.json +++ b/package.json @@ -56,10 +56,9 @@ "docs": "DEV=true nuxi dev docs", "docs:build": "nuxi build docs", "docs:prepare": "nuxt-component-meta docs", - "docs:typecheck": "nuxi typecheck docs", "lint": "eslint .", "lint:fix": "eslint . --fix", - "typecheck": "vue-tsc --noEmit && nuxi typecheck playground && cd playground-vue && vue-tsc --noEmit", + "typecheck": "vue-tsc --noEmit && nuxi typecheck playground && nuxi typecheck docs && cd playground-vue && vue-tsc --noEmit", "test": "vitest", "test:vue": "vitest -c vitest.vue.config.ts", "release": "release-it --preRelease=alpha --npm.tag=next"