From d1dd3bd3518ef69e74d01f22b0d518c7e641c093 Mon Sep 17 00:00:00 2001 From: Richard Roberson Date: Sat, 15 Nov 2025 15:12:06 -0700 Subject: [PATCH] ci(playwright): add ffmpeg installation and verification --- .github/workflows/playwright.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 233ae88..3ae9bcf 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -16,12 +16,14 @@ jobs: - uses: pnpm/action-setup@v4 with: version: 9 - - name: Install Deps (FFmpeg is install through Playwright) + - name: Install system dependencies run: | sudo apt-get update - sudo apt-get install -y libreoffice-writer + sudo apt-get install -y libreoffice-writer ffmpeg - name: Install dependencies run: pnpm install --frozen-lockfile + - name: Verify ffprobe + run: ffprobe -version - name: Install Playwright Browsers run: pnpm exec playwright install --with-deps - name: Run Playwright tests