Skip to content

Commit 1257c49

Browse files
committed
ci: smoke test only on node 22
1 parent bb0d9fb commit 1257c49

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ jobs:
239239
- macos-14
240240
- macos-13
241241
node-version:
242-
- 10
242+
# - 10
243243
- 22
244244
steps:
245245
- name: Download Pack

script/smoke-test.bash

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ set -o pipefail
55
echo "Pack zeromq.js if needed"
66
version=$(node -e 'console.log(require("./package.json").version)')
77
pack_name="zeromq-${version}.tgz"
8-
test -f "${pack_name}" || npm pack
8+
echo "${pack_name}"
9+
test -f "${pack_name}" || ls -R
910

1011
init_smoke_test() {
1112
local pm=$1
@@ -26,8 +27,6 @@ for pm in "${package_managers[@]}"; do
2627
echo "Install with ${pm}"
2728
${pm} install
2829

29-
ls -R ./node_modules/zeromq
30-
3130
echo "Require zeromq"
3231
node -e "console.log(require('zeromq'))"
3332

0 commit comments

Comments
 (0)