diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8888ccd0..9a164506 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -239,7 +239,7 @@ jobs: - macos-14 - macos-13 node-version: - - 10 + # - 10 - 22 steps: - name: Download Pack diff --git a/script/smoke-test.bash b/script/smoke-test.bash index 26a209cc..9610ea37 100755 --- a/script/smoke-test.bash +++ b/script/smoke-test.bash @@ -5,7 +5,8 @@ set -o pipefail echo "Pack zeromq.js if needed" version=$(node -e 'console.log(require("./package.json").version)') pack_name="zeromq-${version}.tgz" -test -f "${pack_name}" || npm pack +echo "${pack_name}" +test -f "${pack_name}" || ls -R init_smoke_test() { local pm=$1 @@ -26,8 +27,6 @@ for pm in "${package_managers[@]}"; do echo "Install with ${pm}" ${pm} install - ls -R ./node_modules/zeromq - echo "Require zeromq" node -e "console.log(require('zeromq'))"