Skip to content

Commit

Permalink
fix(ci): include ffmpeg package
Browse files Browse the repository at this point in the history
  • Loading branch information
andykais committed Jan 8, 2025
1 parent cb366ac commit 5227644
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
name: CI


on:
push:
branches: ["main"]
pull_request:
branches: ["main"]


permissions:
contents: read


env:
DENO_DIR: deno_dependency_cache
DENO_LOCKFILE: ${{ github.workspace }}/deno.lock


jobs:
test:
runs-on: ubuntu-latest
Expand All @@ -17,8 +25,21 @@ jobs:
- name: Setup Repo
uses: actions/checkout@v3

- name: Setup FFMPEG
uses: FedericoCarboni/setup-ffmpeg@v3
id: setup-ffmpeg
with:
ffmpeg-version: 7.0.1

- name: Setup Deno
uses: denoland/setup-deno@v2

- name: Cache Deno dependencies
uses: actions/cache@v4
with:
path: ${{ env.DENO_DIR }}
key: ${{ hashFiles(env.DENO_LOCKFILE) }}

- name: Test
run: deno task test

0 comments on commit 5227644

Please sign in to comment.