chore(github): split docs typecheck

This commit is contained in:
Benjamin Canac
2024-10-15 16:33:17 +02:00
parent 46bd1cb002
commit 5385f84e0a
2 changed files with 6 additions and 1 deletions

View File

@@ -49,6 +49,10 @@ 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

@@ -38,9 +38,10 @@
"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 && nuxi typecheck docs", "typecheck": "vue-tsc --noEmit && nuxi typecheck playground",
"test": "vitest", "test": "vitest",
"release": "release-it --preRelease=alpha --npm.tag=next" "release": "release-it --preRelease=alpha --npm.tag=next"
}, },