Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
jq = "1.8.1"
node = "24.16.0"
"npm:ajv-cli" = "5.0.0"
"npm:json-schema-to-typescript" = "15.0.4"
"npm:typescript" = "6.0.3"

[tasks.setup]
description = "Install tools and configure Git hooks"
Expand All @@ -24,7 +26,7 @@ run = "hk check"

[tasks.test]
description = "Run tests for this repository"
depends = ["check:json", "check:schema", "check:conformance"]
depends = ["check:json", "check:schema", "check:conformance", "check:typescript-generation"]

[tasks."check:json"]
description = "Validate JSON and JSONL syntax"
Expand All @@ -47,6 +49,10 @@ node scripts/check-schema-descriptions.mjs
description = "Validate conformance manifest documentation and diagnostic registry"
run = "node scripts/check-conformance.mjs"

[tasks."check:typescript-generation"]
description = "Validate release schema TypeScript generation and smoke contracts"
run = "node scripts/check-typescript-generation.mjs"

[tasks."check:actions"]
description = "Validate GitHub Actions workflows"
run = "if [ -d .github/workflows ]; then actionlint && zizmor .github/workflows; else echo 'No GitHub Actions workflows configured.'; fi"
Loading