From 1a9e232eeb8f550b8e51f67206f3027edd50de9e Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sat, 26 Oct 2024 21:20:11 -0700 Subject: [PATCH] test: use yarn 1 for the old smoke test --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a1502f4c..22b8a100 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -254,10 +254,10 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Install Yarn 2 + - name: Install Yarn 1 if: matrix.node-version == 10 run: | - npm i -g yarn@^2 + npm i -g yarn@^1 - name: Install Yarn Latest if: matrix.node-version == 22