From 3f6a5f101e16d8ada0507e44aa332d86542f5beb Mon Sep 17 00:00:00 2001 From: ayyanm Date: Wed, 28 Oct 2020 11:29:36 -0700 Subject: [PATCH] Add DISCORD_TOKEN env variable to test workflow --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 29fcb6ce4..159b4f247 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,4 +12,6 @@ jobs: - name: Cache dependencies run: deno cache mod.ts - name: Run test script - run: deno test -A \ No newline at end of file + run: deno test -A + env: + DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }} \ No newline at end of file