File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 28
28
fetch-depth : 0
29
29
ref : ${{ github.event.issue.pull_request.head.ref }}
30
30
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
+
31
43
- name : 🏗 Setup Node
32
44
uses : actions/setup-node@v4
33
45
with :
Original file line number Diff line number Diff line change @@ -9,10 +9,6 @@ const Demo = () => {
9
9
10
10
return (
11
11
< SafeAreaView style = { styles . container } >
12
- < Text > Hello</ Text >
13
- < Text > Mundo</ Text >
14
- < Text > Again</ Text >
15
- < Text > And Again</ Text >
16
12
< Pressable
17
13
style = { styles . button }
18
14
onPress = { ( ) => navigation . navigate ( 'Home' ) } >
You can’t perform that action at this time.
0 commit comments