From 77ddd76c0f8d814b7a65eef4bcd7586d7e4bf0ad Mon Sep 17 00:00:00 2001 From: Bryon Lewis Date: Thu, 4 Jan 2024 09:52:22 -0500 Subject: [PATCH] fix clinet test script --- .env | 1 + .github/workflows/ci.yaml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .env diff --git a/.env b/.env new file mode 100644 index 0000000..e25d77d --- /dev/null +++ b/.env @@ -0,0 +1 @@ +DJANGO_CORS_ORIGIN_WHITELIST=['http://localhost:3000'] \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 57d5e42..dbe6bfe 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -116,4 +116,5 @@ jobs: run: npm ci working-directory: client - name: Run tests - run: npm run test \ No newline at end of file + run: npm run test + working-directory: client