From 04656790d2fa675b910234cd6a905c6531fdc316 Mon Sep 17 00:00:00 2001 From: syntaxbullet Date: Thu, 9 Apr 2026 21:46:53 +0200 Subject: [PATCH] Use isolated test runner in deploy workflow - Update deploy CI to invoke `shared/scripts/test-isolated.sh` - Refresh the inline note for the test environment setup --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3e560b9..ce99c63 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -86,7 +86,7 @@ jobs: - name: Run Tests run: | - # Create .env.test for test-sequential.sh / bun test + # Create .env.test for the isolated test runner / bun test cat < .env.test DATABASE_URL="postgresql://postgres:postgres@postgres:5432/aurora_test" DISCORD_BOT_TOKEN="test_token" @@ -95,6 +95,6 @@ jobs: ADMIN_TOKEN="admin_token_123" LOG_LEVEL="error" EOF - bash shared/scripts/test-sequential.sh --integration + bash shared/scripts/test-isolated.sh --integration env: NODE_ENV: test