Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
llimllib committed May 28, 2024
1 parent 8f326c6 commit 51e6d57
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,12 @@ jobs:
with:
path: prebuilds
- name: copy libs
run: mkdir prebuilds && mv ${{ steps.download.outputs.download-path }}/*/* ./prebuilds && find node/prebuilds
run: |
set -x
mkdir prebuilds
find ${{ steps.download.outputs.download-path }}
mv ${{ steps.download.outputs.download-path }}/* ./prebuilds
find ./prebuilds
- name: npm install
run: npm ci
- name: publish
Expand Down

0 comments on commit 51e6d57

Please sign in to comment.