We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5852aa commit ac4b23dCopy full SHA for ac4b23d
.github/workflows/release.yml
@@ -147,12 +147,18 @@ jobs:
147
"esModuleInterop": true
148
}
149
}' > tsconfig.temp.json
150
+
151
+ echo "Running type check on all .ts files..."
152
# Run tsc and store output
153
TYPECHECK_OUTPUT=$(find ./scripts -name '*.ts' -exec pnpm exec tsc --project tsconfig.temp.json {} \; 2>&1)
154
if [ $? -ne 0 ]; then
- echo "Type checking failed:"
155
+ echo "❌ Type checking failed:"
156
echo "$TYPECHECK_OUTPUT"
157
exit 1
158
+ else
159
+ echo "✅ Type checking passed for all files"
160
+ echo "Files checked:"
161
+ find ./scripts -name '*.ts' | wc -l
162
fi
163
164
- name: pnpm ava
0 commit comments