Skip to content

Commit c5f3243

Browse files
committed
fix(ci): fix typecheck actions failing due to no docs build, update readme.md
1 parent fd2dca1 commit c5f3243

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,9 @@ on:
33
push:
44
branches:
55
- main
6-
paths-ignore:
7-
- "docs/**"
8-
- "*.md"
9-
- "**/*.md"
106
pull_request:
117
branches:
128
- main
13-
paths-ignore:
14-
- "docs/**"
15-
- "*.md"
16-
- "**/*.md"
179

1810
jobs:
1911
lint:
@@ -28,9 +20,6 @@ jobs:
2820
- name: Lint files
2921
run: yarn lint
3022

31-
- name: Typecheck files
32-
run: yarn typecheck
33-
3423
build-library:
3524
runs-on: ubuntu-latest
3625
steps:

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,12 @@ yarn add react-native-video-toolkit
109109
## 🚀 Usage
110110

111111
```tsx
112-
import { VideoPlayer } from 'react-native-video-toolkit';
113-
import { MinimalLayout } from 'react-native-video-toolkit/layouts';
112+
import { VideoPlayer, DefaultLayout } from 'react-native-video-toolkit';
114113

115114
const App = () => {
116115
return (
117116
<VideoPlayer source={{ uri: 'https://example.com/video.mp4' }}>
118-
<MinimalLayout />
117+
<DefaultLayout />
119118
</VideoPlayer>
120119
);
121120
};

0 commit comments

Comments
 (0)