We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c853a9f + 0c66bde commit 11eac42Copy full SHA for 11eac42
.github/workflows/expo-preview.yml
@@ -25,6 +25,8 @@ jobs:
25
uses: actions/checkout@v4
26
with:
27
token: ${{ secrets.GH_PAT }}
28
+ fetch-depth: 0
29
+ ref: ${{ github.event.issue.pull_request.head.ref }}
30
31
- name: 🏗 Setup Node
32
uses: actions/setup-node@v4
src/screens/Demo.tsx
@@ -10,7 +10,9 @@ const Demo = () => {
10
return (
11
<SafeAreaView style={styles.container}>
12
<Text>Hello</Text>
13
- <Text>World</Text>
+ <Text>Mundo</Text>
14
+ <Text>Again</Text>
15
+ <Text>And Again</Text>
16
<Pressable
17
style={styles.button}
18
onPress={() => navigation.navigate('Home')}>
0 commit comments