From 75d56d300e2058c7a80a34ffc0fdc5a97ee82b4c Mon Sep 17 00:00:00 2001 From: Yu-ga <74749461+yuga-hashimoto@users.noreply.github.com> Date: Mon, 29 Jun 2026 01:21:23 +0900 Subject: [PATCH] fix ci coverage ffprobe setup --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b306b98..9c0054b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,6 +68,14 @@ jobs: with: node-version: 22 cache: pnpm + - name: Install ffmpeg / ffprobe + shell: bash + run: | + if command -v ffprobe >/dev/null 2>&1; then + exit 0 + fi + sudo apt-get update + sudo apt-get install -y ffmpeg - run: pnpm install --frozen-lockfile - run: pnpm build - name: Test with coverage