From 2dff7bc88a0a7d0a878a638fc730d085b9bc2b08 Mon Sep 17 00:00:00 2001 From: spinline Date: Fri, 30 Jan 2026 01:17:39 +0300 Subject: [PATCH] fix: Robust cache path and pre-build debug --- .github/workflows/build-mips.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-mips.yml b/.github/workflows/build-mips.yml index 7afbda2..e40f92f 100644 --- a/.github/workflows/build-mips.yml +++ b/.github/workflows/build-mips.yml @@ -13,12 +13,15 @@ jobs: runs-on: ubuntu-latest steps: + - name: Debug - List Files (Pre-Build) + run: ls -R + - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '20' cache: 'npm' - cache-dependency-path: frontend/package-lock.json + cache-dependency-path: '**/package-lock.json' - name: Install Rust uses: dtolnay/rust-toolchain@nightly