Skip to content

chore: cleanup textS #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/expo-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ jobs:
fetch-depth: 0
ref: ${{ github.event.issue.pull_request.head.ref }}

- name: Fetch latest branch state
run: |
git fetch origin ${{ env.branch }} --depth=1
git checkout ${{ env.branch }}
git pull origin ${{ env.branch }}

- name: Debug Git State
run: |
echo "Current Branch: $(git rev-parse --abbrev-ref HEAD)"
echo "Latest Commit: $(git rev-parse HEAD)"
git log --oneline -n 5

- name: 🏗 Setup Node
uses: actions/setup-node@v4
with:
Expand Down
4 changes: 0 additions & 4 deletions src/screens/Demo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ const Demo = () => {

return (
<SafeAreaView style={styles.container}>
<Text>Hello</Text>
<Text>Mundo</Text>
<Text>Again</Text>
<Text>And Again</Text>
<Pressable
style={styles.button}
onPress={() => navigation.navigate('Home')}>
Expand Down