From 5432079c715dcdb17df4b4c5b6c001ce6ee220c5 Mon Sep 17 00:00:00 2001 From: xopiie <46599014+NadicaUzunova@users.noreply.github.com> Date: Thu, 18 Jan 2024 23:15:28 +0100 Subject: [PATCH] test 2 --- .github/workflows/test_workflow.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test_workflow.yml b/.github/workflows/test_workflow.yml index cbd247b..e5a9a04 100644 --- a/.github/workflows/test_workflow.yml +++ b/.github/workflows/test_workflow.yml @@ -40,7 +40,15 @@ jobs: - name: Install dependencies run: npm ci working-directory: frontend + + - name: Suppress ESLint Warnings + run: | + sed -i 's/no-unused-vars/\/\/ no-unused-vars/' path/to/your/project/build/static/js/*.js + sed -i 's/react-hooks\/exhaustive-deps/\/\* react-hooks\/exhaustive-deps \*\//' path/to/your/project/build/static/js/*.js + working-directory: frontend - name: Build frontend run: npm run build --if--present working-directory: frontend + +