Skip to content

Commit 2017c31

Browse files
authored
Merge pull request #11 from timmyjose-experiments/branch-4
chore: cleanup textS
2 parents 11eac42 + 81cbb72 commit 2017c31

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/expo-preview.yml

+12
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@ jobs:
2828
fetch-depth: 0
2929
ref: ${{ github.event.issue.pull_request.head.ref }}
3030

31+
- name: Fetch latest branch state
32+
run: |
33+
git fetch origin ${{ env.branch }} --depth=1
34+
git checkout ${{ env.branch }}
35+
git pull origin ${{ env.branch }}
36+
37+
- name: Debug Git State
38+
run: |
39+
echo "Current Branch: $(git rev-parse --abbrev-ref HEAD)"
40+
echo "Latest Commit: $(git rev-parse HEAD)"
41+
git log --oneline -n 5
42+
3143
- name: 🏗 Setup Node
3244
uses: actions/setup-node@v4
3345
with:

src/screens/Demo.tsx

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ const Demo = () => {
99

1010
return (
1111
<SafeAreaView style={styles.container}>
12-
<Text>Hello</Text>
13-
<Text>Mundo</Text>
14-
<Text>Again</Text>
15-
<Text>And Again</Text>
1612
<Pressable
1713
style={styles.button}
1814
onPress={() => navigation.navigate('Home')}>

0 commit comments

Comments
 (0)