From 6046021a0073e2acbacfd0faadd7d0f0a91edaab Mon Sep 17 00:00:00 2001 From: Yuchan Lee Date: Sat, 30 Mar 2024 02:41:20 +0000 Subject: [PATCH] ci: Fix Playwright version get script --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6c6c039..d4807d0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -86,7 +86,7 @@ jobs: # https://github.com/microsoft/playwright/issues/7249 - name: Store Playwright version as env run: | - PLAYWRIGHT_VERSION="$(yarn run playwright --version | cut -d' ' -f2)" + PLAYWRIGHT_VERSION="$(yarn run --silent playwright --version | cut -d' ' -f2)" echo "Playwright version is ${PLAYWRIGHT_VERSION}" echo "PLAYWRIGHT_VERSION=${PLAYWRIGHT_VERSION}" >> ${GITHUB_ENV}