From a0d44c32055821af00b1db5bd1479d78e4ef1c60 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 20 Oct 2023 01:57:35 -0300 Subject: [PATCH] added repo secrets on e2e tests yml file --- .github/workflows/run-e2e-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-e2e-tests.yml b/.github/workflows/run-e2e-tests.yml index 1a32b15..94f2367 100644 --- a/.github/workflows/run-e2e-tests.yml +++ b/.github/workflows/run-e2e-tests.yml @@ -34,5 +34,6 @@ jobs: - run: npm run test:e2e env: - JWT_SECRET: testing-secret + JWT_PUBLIC_KEY: ${{ secrets.JWT_PUBLIC_KEY }} + JWT_PRIVATE_KEY: ${{ secrets.JWT_PRIVATE_KEY }} DATABASE_URL: "postgresql://docker:docker@localhost:5432/dockerdb?schema=public" \ No newline at end of file