From e6ce7f3bb99b7bc92b25376744f588630d577235 Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Sat, 22 Jul 2023 19:47:36 -0700 Subject: [PATCH] Fix code coverage --- .github/workflows/ci-front.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci-front.yaml b/.github/workflows/ci-front.yaml index 973027d6a..9a80cc81e 100644 --- a/.github/workflows/ci-front.yaml +++ b/.github/workflows/ci-front.yaml @@ -27,10 +27,7 @@ jobs: - name: Front / Write .env run: | cd front - touch .env - echo "REACT_APP_API_URL: $REACT_APP_API_URL" >> .env - echo "REACT_APP_AUTH_URL: $REACT_APP_AUTH_URL" >> .env - echo "REACT_APP_FILES_URL: $REACT_APP_FILES_URL" >> .env + cp .env.example .env - name: Front / Install Dependencies run: cd front && yarn - name: Front / Install Playwright