Skip to content

Commit

Permalink
fix: upgrade Mux elements + deps (#324)
Browse files Browse the repository at this point in the history
* fix: upgrade elements

* fix: upgrade some dependencies

* fix: NPM audit

* fix: upgrade c8

* fix: upgrade chokidar, symlink-dir

* fix: upgrade next, react v19

* fix: upgrade example deps

* fix: upgrade @aws-sdk/client-s3

* fix: npm audit fix
  • Loading branch information
luwes authored Dec 20, 2024
1 parent d60d080 commit 2d52e6c
Show file tree
Hide file tree
Showing 10 changed files with 4,366 additions and 3,408 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 3
command: npm test
- run: npm run coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
Expand Down
9 changes: 8 additions & 1 deletion examples/default-provider/app/(default)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ export default function Page() {
return (
<>
<section>
<Video src={getStarted}>
<Video
src={getStarted}
streamType='on-demand'
metadata={{
video_id: 'next-video-intro',
video_title: 'next-video intro',
}}
>
<track kind="captions" src="/get-started.vtt" srcLang="en" label="English" default />
</Video>
</section>
Expand Down
Loading

0 comments on commit 2d52e6c

Please sign in to comment.