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 34
34
- name : Build
35
35
run : pnpm run build
36
36
37
+ - name : Typecheck
38
+ run : pnpm typecheck && pnpm test:attw
39
+
37
40
- name : Test
38
41
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'
3
3
export default antfu ( {
4
4
rules : {
5
5
'no-use-before-define' : 'off' ,
6
+ 'ts/ban-ts-comment' : 'off' ,
6
7
} ,
7
8
} , {
8
9
ignores : [
Original file line number Diff line number Diff line change 23
23
"lint" : " eslint . --fix" ,
24
24
"benchmark" : " vitest bench" ,
25
25
"test:attw" : " pnpm --filter './packages/**' test:attw" ,
26
+ "typecheck" : " vue-tsc --noEmit" ,
26
27
"lint:docs" : " pnpx markdownlint-cli ./docs && pnpx case-police 'docs/**/*.md' *.md" ,
27
28
"lint:docs:fix" : " pnpx markdownlint-cli ./docs --fix && pnpx case-police 'docs/**/*.md' *.md --fix" ,
28
29
"twoslash:verify" : " nuxt-content-twoslash verify --content-dir docs"
Original file line number Diff line number Diff line change
1
+ // @ts -nocheck
1
2
import { fc , it } from '@fast-check/vitest'
2
3
import { renderSSRHead } from '@unhead/ssr'
3
4
import { useHead } from '../../src/composables'
You can’t perform that action at this time.
0 commit comments