From e32c670ab1470d7cb211a88160e054295da1ece2 Mon Sep 17 00:00:00 2001 From: Fleny Date: Tue, 30 Jul 2024 21:18:07 +0200 Subject: [PATCH] fix(ci): Add env to `test:e2e` turbo task (#3809) * Add env to test:e2e turbo task Turbo in v2 does not pass down the environment variables unless manually specified (by default) * use the correct env name for the test guild --- turbo.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 2935773ec..6a33ebf0f 100644 --- a/turbo.json +++ b/turbo.json @@ -34,7 +34,8 @@ }, "test:e2e": { "dependsOn": ["^build"], - "outputs": ["coverage/**"] + "outputs": ["coverage/**"], + "env": ["DISCORD_TOKEN", "E2E_TEST_GUILD_ID"] }, "lint": { "dependsOn": ["build:type"],