From 86cea49ed41465263a7b8cbbddf6a84dd8a86170 Mon Sep 17 00:00:00 2001 From: FoxxMD Date: Thu, 9 Jul 2026 13:31:02 +0000 Subject: [PATCH] fix(ci): Use node for stanity run --- .github/workflows/testAndSanity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testAndSanity.yml b/.github/workflows/testAndSanity.yml index 43844df5..d50f47f5 100644 --- a/.github/workflows/testAndSanity.yml +++ b/.github/workflows/testAndSanity.yml @@ -60,7 +60,7 @@ jobs: run: | set +e export NODE_ENV=production - timeout --preserve-status 10s node node_modules/.bin/tsx src/backend/index.ts + timeout --preserve-status 10s node src/backend/index.ts exitcode="$?" if [[ "$exitcode" -eq 143 ]] || [[ "$exitcode" -eq 137 ]]; then echo "App stayed up long enough and exited with expected status" -- 2.51.2