ci(playwright): add ffmpeg installation and verification
This commit is contained in:
parent
071d967f8f
commit
d1dd3bd351
1 changed files with 4 additions and 2 deletions
6
.github/workflows/playwright.yml
vendored
6
.github/workflows/playwright.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue