chore(github): put back docs typecheck

This commit is contained in:
Benjamin Canac
2024-10-25 17:28:19 +02:00
parent d4a943e631
commit 2514abeb5b
2 changed files with 1 additions and 6 deletions

View File

@@ -49,10 +49,6 @@ jobs:
- name: Typecheck - name: Typecheck
run: pnpm run typecheck run: pnpm run typecheck
- name: Docs typecheck
run: pnpm run docs:typecheck
continue-on-error: true
- name: Test - name: Test
run: pnpm run test run: pnpm run test

View File

@@ -56,10 +56,9 @@
"docs": "DEV=true nuxi dev docs", "docs": "DEV=true nuxi dev docs",
"docs:build": "nuxi build docs", "docs:build": "nuxi build docs",
"docs:prepare": "nuxt-component-meta docs", "docs:prepare": "nuxt-component-meta docs",
"docs:typecheck": "nuxi typecheck docs",
"lint": "eslint .", "lint": "eslint .",
"lint:fix": "eslint . --fix", "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": "vitest",
"test:vue": "vitest -c vitest.vue.config.ts", "test:vue": "vitest -c vitest.vue.config.ts",
"release": "release-it --preRelease=alpha --npm.tag=next" "release": "release-it --preRelease=alpha --npm.tag=next"