Skip to content

Commit 9b8f85f

Browse files
committed
ci: download pack after checkout + enable node 10
1 parent 1257c49 commit 9b8f85f

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

.github/workflows/CI.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -236,17 +236,15 @@ jobs:
236236
os:
237237
- ubuntu-24.04
238238
- windows-2022
239-
- macos-14
240239
- macos-13
241240
node-version:
242-
# - 10
241+
- 10
243242
- 22
244-
steps:
245-
- name: Download Pack
246-
uses: actions/download-artifact@v4
247-
with:
248-
name: pack
249243

244+
include:
245+
- os: macos-14
246+
node-version: 22
247+
steps:
250248
- name: Install Node
251249
uses: actions/setup-node@v4
252250
with:
@@ -276,5 +274,10 @@ jobs:
276274

277275
- uses: actions/checkout@v4
278276

277+
- name: Download Pack
278+
uses: actions/download-artifact@v4
279+
with:
280+
name: pack
281+
279282
- name: Smoke Test
280283
run: bash ./script/smoke-test.bash

script/smoke-test.bash

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ echo "Pack zeromq.js if needed"
66
version=$(node -e 'console.log(require("./package.json").version)')
77
pack_name="zeromq-${version}.tgz"
88
echo "${pack_name}"
9-
test -f "${pack_name}" || ls -R
9+
test -f "${pack_name}" || npm pack
1010

1111
init_smoke_test() {
1212
local pm=$1
@@ -15,8 +15,8 @@ init_smoke_test() {
1515
rm -rf "./smoke-test-${pm}"
1616
mkdir "./smoke-test-${pm}"
1717
cd "./smoke-test-${pm}"
18-
npm init -q --init-module "smoke-test-${pm}" -y
19-
npm pkg set dependencies.zeromq="file:../${pack_name}" || (jq '.dependencies.zeromq = "file:../${pack_name}"' package.json >temp.json && mv temp.json package.json)
18+
npm init -y
19+
npm pkg set dependencies.zeromq="file:../${pack_name}" || (jq ".dependencies.zeromq = \"file:../${pack_name}\"" package.json >temp.json && mv temp.json package.json)
2020
}
2121

2222
package_managers=(npm pnpm yarn)

0 commit comments

Comments
 (0)