From 7174ad6c5415a7e525b6b8e00b49e0c661b74dec Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Wed, 23 Jul 2025 16:44:20 -0500 Subject: [PATCH] Update test workflow to check for main/index.cjs instead of main/index.js - Modified the file existence check in the GitHub Actions workflow to validate the presence of main/index.cjs, reflecting recent changes in the build output structure. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c25486..3243b45 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -64,6 +64,6 @@ jobs: test -d "out/client" || (echo "❌ Missing client directory" && exit 1) test -f "out/server/index.js" || (echo "❌ Missing server/index.js" && exit 1) test -f "out/server/manifest.js" || (echo "❌ Missing server/manifest.js" && exit 1) - test -f "out/main/index.js" || (echo "❌ Missing main/index.js" && exit 1) + test -f "out/main/index.cjs" || (echo "❌ Missing main/index.js" && exit 1) test -f "out/preload/index.js" || (echo "❌ Missing preload/index.js" && exit 1) echo "✅ All required build files exist" \ No newline at end of file