From 5a43585545320bdb2507c47747d7760495eecadb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20D=C4=9Bdi=C4=8D?= Date: Sun, 22 Oct 2023 00:09:01 +0200 Subject: [PATCH] Printing playwright version in CI --- .github/workflows/CI.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ea077f1e..ee4cd6c0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -140,14 +140,16 @@ jobs: - name: Get installed Playwright version id: playwright-version - run: echo "version=$(npm ls @playwright/test | grep @playwright | sed 's/.*@//')" >> $GITHUB_OUTPUT + run: | + echo "version=$(npm ls @playwright/test | grep @playwright | sed 's/.*@//')" + echo "version=$(npm ls @playwright/test | grep @playwright | sed 's/.*@//')" >> $GITHUB_OUTPUT - name: Cache playwright binaries id: playwright-cache uses: actions/cache@v3 with: path: "~/.cache/ms-playwright" - key: playwright-binaries-${{ runner.os }}-${{ env.cache-version }}-playwright-${{ steps.playwright-version.outputs.version }} + key: playwright-binaries-${{ runner.os }}-${{ env.cache-version }}-${{ steps.playwright-version.outputs.version }} - name: "Install NPM dependencies" run: |