Skip to content

Commit 91498cf

Browse files
committed
chore: broken ci
1 parent 2afbf0f commit 91498cf

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
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

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import antfu from '@antfu/eslint-config'
33
export default antfu({
44
rules: {
55
'no-use-before-define': 'off',
6+
'ts/ban-ts-comment': 'off',
67
},
78
}, {
89
ignores: [

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
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"

packages/unhead/test/unit/fuzz.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
import { fc, it } from '@fast-check/vitest'
23
import { renderSSRHead } from '@unhead/ssr'
34
import { useHead } from '../../src/composables'

0 commit comments

Comments
 (0)