Skip to content

Commit

Permalink
fix-pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
LunatiqueCoder committed Sep 26, 2023
1 parent 3925b56 commit a09071c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: rm -rf node_modules && yarn install --immutable --immutable-cache --check-cache
- run: yarn lint
- run: turbo run lint
35 changes: 1 addition & 34 deletions examples/VanillaVideoplayer/App.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
*/

import React from 'react';
import {
SafeAreaView,
StatusBar,
StyleSheet,
useColorScheme,
} from 'react-native';

import {SafeAreaView, StatusBar, useColorScheme} from 'react-native';
import {Colors} from 'react-native/Libraries/NewAppScreen';
import VideoPlayer from 'react-native-media-console';

Expand All @@ -35,24 +22,4 @@ function App(): JSX.Element {
</SafeAreaView>
);
}

const styles = StyleSheet.create({
sectionContainer: {
marginTop: 32,
paddingHorizontal: 24,
},
sectionTitle: {
fontSize: 24,
fontWeight: '600',
},
sectionDescription: {
marginTop: 8,
fontSize: 18,
fontWeight: '400',
},
highlight: {
fontWeight: '700',
},
});

export default App;

0 comments on commit a09071c

Please sign in to comment.