From 7c0766a27354d37f59a0ea50e70ba2142742effb Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Fri, 8 Sep 2023 13:54:05 -0700 Subject: [PATCH] devops: install pnpm and yarn for secondary installation tests (#26968) --- .github/workflows/tests_secondary.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests_secondary.yml b/.github/workflows/tests_secondary.yml index c67c92b1e4..18531181f1 100644 --- a/.github/workflows/tests_secondary.yml +++ b/.github/workflows/tests_secondary.yml @@ -137,6 +137,8 @@ jobs: DEBUG: pw:install - run: npm run build - run: npx playwright install-deps + - run: npm install -g yarn@1 + - run: npm install -g pnpm@8 - run: npm run itest if: matrix.os != 'ubuntu-latest' - run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run itest