Skip to content

Commit

Permalink
drop! debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
derhuerst committed Dec 21, 2023
1 parent 87e0318 commit 730490d
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,15 @@ jobs:
- run: npm test
- name: test-install ffmpeg-static as dependency
run: |
file=$(npm pack -s) && file=$(realpath $file)
cd $(mktemp -d) && npm init -y
npm i "$file"
file $(node -p 'require("ffmpeg-static")')
$(node -p 'require("ffmpeg-static")') --help
set -x
for file in $(npm pack -s --workspaces | xargs); do
file="$(realpath $file)"
pushd .
cd "$(mktemp -d)"
npm init -y
npm i "$file"
file "$(node -p 'require("ffmpeg-static")')"
"$(node -p 'require("ffmpeg-static")')" -L
popd
done

0 comments on commit 730490d

Please sign in to comment.