From 5b9601c47493f7c40490a97dc56faf966ddd1410 Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Fri, 24 Apr 2026 13:53:32 +0000 Subject: [PATCH] feat: Add symlink creation for frontend build in test workflow Co-authored-by: Copilot --- .github/workflows/test.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fb857c9..b81383f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -50,6 +50,9 @@ jobs: restore-keys: | frontend-build-${{ runner.os }}- + - name: create symlink to frontend build + run: ln -s ${{ github.workspace }}/apps/nxmesh-frontend/dist ${{ github.workspace }}/apps/nxmesh-master/frontend-dist + - name: Run tests run: cargo test --all-features @@ -79,6 +82,9 @@ jobs: restore-keys: | frontend-build-${{ runner.os }}- + - name: create symlink to frontend build + run: ln -s ${{ github.workspace }}/apps/nxmesh-frontend/dist ${{ github.workspace }}/apps/nxmesh-master/frontend-dist + - name: Run clippy run: cargo clippy --all-features @@ -149,5 +155,4 @@ jobs: with: path: apps/nxmesh-frontend/dist key: frontend-build-${{ runner.os }}-run-${{ github.run_id }} - restore-keys: | - frontend-build-${{ runner.os }}- + # IGNORE restore-keys