-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
142 lines (126 loc) · 3.08 KB
/
mise.toml
File metadata and controls
142 lines (126 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[tools]
actionlint = "1.7.12"
communique = "1.1.3"
zizmor = "1.24.1"
# CI installs with `mise install --locked`, so update mise.lock whenever tool
# versions or supported CI platforms change.
node = "26"
python = "3"
aube = "1.10.4"
[tasks.bootstrap]
description = "Install deps and Chromium for local development"
run = "aube exec playwright install chromium"
[tasks.bootstrap-ci]
description = "Install deps for CI without browser downloads"
run = "aube ci"
[tasks.clean]
description = "Clean artifacts"
run = "npm run clean"
[tasks.build]
description = "Build"
run = "npm run build"
sources = [
"src/**/*.ts",
"tsconfig.json",
"tsconfig.build.json",
"package.json",
]
outputs = ["dist/**/*.js", "dist/**/*.d.ts", "dist/**/*.map"]
[tasks.install-smoke]
description = "Validate the tarball route and check the current git-install caveat"
run = "npm run smoke:install -- --skip-build"
[tasks.validate-bundles]
description = "Validate canonical proof bundles against the canonical schema"
run = "npm run validate-bundle:canonical"
sources = [
"dogfood/CATALOG.md",
"dogfood/20260326-week9-release-readiness/**",
"dogfood/20260325-week8-contract-locks/**",
"dogfood/run-command/**",
"dogfood/agent-uses-agent-tty/**",
"src/tools/validate-bundle.ts",
"src/tools/validate-canonical-bundles.ts",
"src/tools/bundleManifestSchema.ts",
]
[tasks.typecheck]
description = "Typecheck"
run = "npm run typecheck"
sources = [
"src/**/*.ts",
"test/**/*.ts",
"tsconfig.json",
"tsconfig.build.json",
"vitest.config.ts",
"package.json",
]
[tasks.lint]
description = "Lint"
run = "npm run lint"
sources = [
"src/**/*.ts",
"test/**/*.ts",
".oxlintrc.json",
"tsconfig.json",
"vitest.config.ts",
"package.json",
]
[tasks.format]
description = "Format"
run = "npm run format"
[tasks.format-check]
description = "Check format"
run = "npm run format:check"
sources = [
"src/**/*.ts",
"test/**/*.ts",
".oxfmtrc.json",
"*.json",
"mise.lock",
"*.mjs",
"*.toml",
"*.md",
"design/**/*.md",
]
[tasks.workflow-lint]
description = "Lint GitHub Actions workflows"
run = "actionlint && zizmor --offline ."
sources = [
".github/workflows/**/*.yml",
".github/workflows/**/*.yaml",
"zizmor.yml",
]
[tasks.test]
description = "Test"
run = "npm run test"
sources = ["src/**/*.ts", "test/**/*.ts", "vitest.config.ts", "package.json"]
[tasks.test-unit]
description = "Run unit tests"
run = "npm run test:unit"
sources = [
"src/**/*.ts",
"test/unit/**/*.ts",
"vitest.config.ts",
"package.json",
]
[tasks.test-integration]
description = "Run integration tests serially"
run = "npm run test:integration"
sources = [
"src/**/*.ts",
"test/integration/**/*.ts",
"vitest.config.ts",
"package.json",
]
[tasks.test-e2e]
description = "Run e2e tests serially"
run = "npm run test:e2e"
sources = [
"src/**/*.ts",
"test/e2e/**/*.ts",
"test/fixtures/**/*.ts",
"vitest.config.ts",
"package.json",
]
[tasks.ci]
description = "Run CI checks"
run = "mise run format-check && mise run workflow-lint && mise run lint && mise run typecheck && mise run test && mise run build && mise run install-smoke"