We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2069817 commit ea05c35Copy full SHA for ea05c35
2 files changed
.github/workflows/CI.yml
@@ -308,7 +308,7 @@ jobs:
308
- name: Install Yarn Latest
309
if: matrix.node-version == 22
310
run: |
311
- npm i -g yarn@latest
+ npm i -g @yarnpkg/cli-dist@latest
312
313
- name: Install Pnpm 5
314
if: matrix.node-version == 10
script/smoke-test.bash
@@ -23,11 +23,7 @@ for pm in "${package_managers[@]}"; do
23
npm pkg set dependencies.zeromq="file:./${pack_name}" || (jq ".dependencies.zeromq = \"file:./${pack_name}\"" package.json >temp.json && mv temp.json package.json)
24
25
echo "Install with ${pm}"
26
- if [[ "${pm}" == "yarn" ]]; then
27
- yarn install --ignore-engines
28
- else
29
- ${pm} install
30
- fi
+ ${pm} install
31
32
echo "Require zeromq"
33
node -e "console.log(require('zeromq'))"
0 commit comments