From 86f11f954b9a0659be07ca8c18daabd480d778d8 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Fri, 25 Oct 2024 19:25:14 -0700 Subject: [PATCH] ci: avoid yarn install failures --- .github/workflows/CI.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ed86a680..d29f8d93 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -214,10 +214,6 @@ jobs: - 10 - 22 steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - - name: Place Builds uses: actions/download-artifact@v4 with: @@ -229,13 +225,15 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Install pnpm - uses: pnpm/action-setup@v4 - - name: Install Yarn run: | npm i -g yarn yarn set version stable + - uses: actions/checkout@v4 + + - name: Install pnpm + uses: pnpm/action-setup@v4 + - name: Smoke Test run: npm run test.smoke