From 500d7d53e604563ef77544cdceacfda72d8a7a77 Mon Sep 17 00:00:00 2001 From: ivgtr Date: Wed, 11 Feb 2026 02:55:30 +0900 Subject: [PATCH] fix(ci): add Playwright install step to release workflow --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 829516d..a15570c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,6 +91,10 @@ jobs: if: steps.check-label.outputs.release-type != 'none' run: npm ci + - name: Install Playwright browsers + if: steps.check-label.outputs.release-type != 'none' + run: npx playwright install --with-deps chromium + - name: Typecheck if: steps.check-label.outputs.release-type != 'none' run: npm run typecheck