Skip to content

Commit

Permalink
debug CI 💚
Browse files Browse the repository at this point in the history
  • Loading branch information
derhuerst committed Jan 24, 2022
1 parent 284d80a commit 39eb5ca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
- name: test-install ffmpeg-static as dependency
run: |
file=$(npm pack -s) && file=$(realpath $file)
cd $(mktemp -d) && npm init -y
cd $(mktemp -d)
echo '{"name": "tmp", "version": "1.0.0", "private": true, "type": "module", "main": "index.js"}' >package.json
npm i "$file"
file $(node -p 'require("ffmpeg-static")')
$(node -p 'require("ffmpeg-static")') --help
file $(node -e 'import("ffmpeg-static").then(m => console.log(m.default))')
$(node -e 'import("ffmpeg-static").then(m => console.log(m.default))') --help

0 comments on commit 39eb5ca

Please sign in to comment.