From f7c8667e6943704473a11b634f633fd2edf70659 Mon Sep 17 00:00:00 2001 From: einhorn_b Date: Fri, 6 Oct 2023 08:12:31 +0200 Subject: [PATCH] use node-gyp install for Unit Test --- .github/workflows/test_frontend.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_frontend.yml b/.github/workflows/test_frontend.yml index 6dd527079..ae8b88d33 100644 --- a/.github/workflows/test_frontend.yml +++ b/.github/workflows/test_frontend.yml @@ -45,7 +45,7 @@ jobs: uses: actions/checkout@v3 - name: Frontend | Unit tests - run: cd frontend && yarn && yarn run test + run: cd frontend && yarn global add node-gyp && yarn && yarn run test lint: if: needs.files-changed.outputs.frontend == 'true'