From d1e089cffaf7185beeb3538fee1ec0812970ebb6 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Tue, 16 Apr 2024 17:34:45 -0400 Subject: [PATCH] list files and index.js file contents around rsync command --- .github/workflows/module-plugin-test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/module-plugin-test.yml b/.github/workflows/module-plugin-test.yml index 964784c..cf3c5b3 100644 --- a/.github/workflows/module-plugin-test.yml +++ b/.github/workflows/module-plugin-test.yml @@ -199,9 +199,13 @@ jobs: - name: Sync Module build files to node_modules dir if: ${{ inputs.sync-npm-package }} run: | - echo "syncing files from vendor/${{ inputs.module-repo }}/build to node_modules/@${{ inputs.module-repo }}/build" + echo "vendor/${{ inputs.module-repo }}/build" + l vendor/${{ inputs.module-repo }}/build + echo "node_modules/@${{ inputs.module-repo }}/build" + l node_modules/@${{ inputs.module-repo }}/build + cat node_modules/@${{ inputs.module-repo }}/build/index.js rsync -r -v -h --progress vendor/${{ inputs.module-repo }}/build node_modules/@${{ inputs.module-repo }}/build - + cat node_modules/@${{ inputs.module-repo }}/build/index.js - name: Build Plugin run: npm run build