Skip to content

Commit

Permalink
list files and index.js file contents around rsync command
Browse files Browse the repository at this point in the history
  • Loading branch information
circlecube committed Apr 16, 2024
1 parent 95f120b commit d1e089c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/module-plugin-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d1e089c

Please sign in to comment.