fix(ci): install ffmpeg for e2e recording test (#1244)

The `e2e_recording_inherits_viewport` test added in #1208 requires
ffmpeg on the CI runner. Without it, `recording_start` fails with
"ffmpeg not found".
This commit is contained in:
Chris Tate
2026-04-16 00:20:04 -05:00
committed by GitHub
parent b02e485a37
commit 2e99293e80
+3
View File
@@ -121,6 +121,9 @@ jobs:
run: |
cargo run --manifest-path cli/Cargo.toml -- install --with-deps
- name: Install ffmpeg
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Run e2e tests
run: cargo test --profile ci --manifest-path cli/Cargo.toml e2e -- --ignored --test-threads=1