File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
packages/unhead/test/unit Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 3434 - name : Build
3535 run : pnpm run build
3636
37+ - name : Typecheck
38+ run : pnpm typecheck && pnpm test:attw
39+
3740 - name : Test
3841 run : pnpm run test
39-
40- - name : Check built types
41- run : pnpm test:attw
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import antfu from '@antfu/eslint-config'
33export default antfu ( {
44 rules : {
55 'no-use-before-define' : 'off' ,
6+ 'ts/ban-ts-comment' : 'off' ,
67 } ,
78} , {
89 ignores : [
Original file line number Diff line number Diff line change 2323 "lint" : " eslint . --fix" ,
2424 "benchmark" : " vitest bench" ,
2525 "test:attw" : " pnpm --filter './packages/**' test:attw" ,
26+ "typecheck" : " vue-tsc --noEmit" ,
2627 "lint:docs" : " pnpx markdownlint-cli ./docs && pnpx case-police 'docs/**/*.md' *.md" ,
2728 "lint:docs:fix" : " pnpx markdownlint-cli ./docs --fix && pnpx case-police 'docs/**/*.md' *.md --fix" ,
2829 "twoslash:verify" : " nuxt-content-twoslash verify --content-dir docs"
Original file line number Diff line number Diff line change 1+ // @ts -nocheck
12import { fc , it } from '@fast-check/vitest'
23import { renderSSRHead } from '@unhead/ssr'
34import { useHead } from '../../src/composables'
You can’t perform that action at this time.
0 commit comments