From d46ead531445f57b73f7bea6ff25a1ab0b963e77 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 18 Feb 2025 07:46:31 +0000 Subject: [PATCH] chore(internal): fix tests not always being type checked --- scripts/lint | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/lint b/scripts/lint index 726708c..3ffb78a 100755 --- a/scripts/lint +++ b/scripts/lint @@ -8,7 +8,10 @@ echo "==> Running eslint" ./node_modules/.bin/eslint . echo "==> Building" -./scripts/build # also checks types +./scripts/build + +echo "==> Checking types" +./node_modules/typescript/bin/tsc echo "==> Running Are The Types Wrong?" ./node_modules/.bin/attw --pack dist -f json >.attw.json || true