Skip to content

Commit ea05c35

Browse files
committed
Smoke test with non-legacy yarn version
1 parent 2069817 commit ea05c35

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ jobs:
308308
- name: Install Yarn Latest
309309
if: matrix.node-version == 22
310310
run: |
311-
npm i -g yarn@latest
311+
npm i -g @yarnpkg/cli-dist@latest
312312
313313
- name: Install Pnpm 5
314314
if: matrix.node-version == 10

script/smoke-test.bash

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ for pm in "${package_managers[@]}"; do
2323
npm pkg set dependencies.zeromq="file:./${pack_name}" || (jq ".dependencies.zeromq = \"file:./${pack_name}\"" package.json >temp.json && mv temp.json package.json)
2424

2525
echo "Install with ${pm}"
26-
if [[ "${pm}" == "yarn" ]]; then
27-
yarn install --ignore-engines
28-
else
29-
${pm} install
30-
fi
26+
${pm} install
3127

3228
echo "Require zeromq"
3329
node -e "console.log(require('zeromq'))"

0 commit comments

Comments
 (0)