From c66641e52ffa4d038e252db2df9bf5b345e5d284 Mon Sep 17 00:00:00 2001 From: rUv Date: Fri, 21 Nov 2025 19:47:26 +0000 Subject: [PATCH] debug: Add file listing step to find where NAPI-RS outputs .node files --- .github/workflows/build-native.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build-native.yml b/.github/workflows/build-native.yml index d195dcea..5acfce99 100644 --- a/.github/workflows/build-native.yml +++ b/.github/workflows/build-native.yml @@ -77,6 +77,13 @@ jobs: env: CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc + - name: List built files (debug) + working-directory: npm/packages/core + run: | + echo "=== Looking for .node files ===" + find . -name "*.node" -type f || true + ls -R . | grep -E "\.node$" || true + - name: Test native module (native platform only) if: | (matrix.settings.platform == 'linux-x64-gnu' && runner.os == 'Linux') ||