diff --git a/.github/workflows/frontend-cicd.yml b/.github/workflows/frontend-cicd.yml index dd242f6..d87ffd9 100644 --- a/.github/workflows/frontend-cicd.yml +++ b/.github/workflows/frontend-cicd.yml @@ -44,6 +44,11 @@ jobs: - name: Install dependencies run: npm ci --prefer-offline --legacy-peer-deps + + - name: Fix symbolic link issue + run: | + rm -rf frontend/public/json + ln -s $GITHUB_WORKSPACE/json frontend/public/json - name: Run tests run: npm run test