Skip to content

Commit 904e149

Browse files
authored
Merge pull request #125 from rootstrap/update-upstream-v8.0.0
chore: update upstream to v8.0.0
2 parents 948fa30 + faf2eb9 commit 904e149

File tree

150 files changed

+7271
-9234
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+7271
-9234
lines changed

.eslintignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 155 deletions
This file was deleted.

.github/project-workflows/sync-with-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
echo "UPDATE_FROM_TEMPLATE_PAT secret not found. Please create a fine-grained Personal Access Token following the instructions in the workflow file."
6868
exit 1
6969
- name: Checkout project repository
70-
uses: actions/checkout@v3
70+
uses: actions/checkout@v4
7171
with:
7272
fetch-depth: 0
7373
path: project
@@ -120,7 +120,7 @@ jobs:
120120
sudo apt install wiggle
121121
- name: Checkout update release of template
122122
if: ${{ env.BRANCH_EXISTS == 'false' }}
123-
uses: actions/checkout@v3
123+
uses: actions/checkout@v4
124124
with:
125125
repository: ${{ env.TEMPLATE_REPOSITORY }}
126126
ref: ${{ env.TEMPLATE_UPDATE_VERSION }}

.github/scripts/expo-doctor.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
3+
# Run expo-doctor and capture output and exit code
4+
output=$(npx expo-doctor@latest 2>&1)
5+
exit_code=$?
6+
7+
# Output file location
8+
output_file=".expo/expo-doctor.md"
9+
{
10+
# Add summary based on exit code
11+
if [ $exit_code -eq 0 ]; then
12+
echo "✅ **Good news!** We ran Expo Doctor for this PR and everything looks good, Great job!" > "$output_file"
13+
else
14+
echo "❌ **Action Required:** We ran Expo Doctor for this PR and found some issues that need to be addressed. Please review the complete report below 👇" > "$output_file"
15+
echo >> "$output_file" # Add blank line
16+
echo "\`\`\`shell" >> "$output_file"
17+
echo "$output" >> "$output_file"
18+
echo "\`\`\`" >> "$output_file"
19+
fi
20+
}
21+
22+
# Show original output in terminal
23+
echo "$output"
24+
25+
# Return the original exit code
26+
exit $exit_code

.github/workflows/check-merge-conflicts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: 📦 Checkout project repo
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626
- name: Check for merge conflicts

.github/workflows/compress-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout Branch
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333
- name: Compress Images

.github/workflows/deploy-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
GH_TOKEN: ${{ secrets.GH_TOKEN }}
4949
run: echo "GH_TOKEN=${GH_TOKEN}" >> $GITHUB_ENV
5050
- name: 📦 Checkout project repo
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
with:
5353
fetch-depth: 0
5454
token: ${{ secrets.GH_TOKEN }}

.github/workflows/e2e-android-eas-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
steps:
4646
- name: 📦 Checkout project repo
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848
with:
4949
fetch-depth: 0
5050

.github/workflows/e2e-android-maestro.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: 📦 Checkout project repo
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0
3131

.github/workflows/e2e-android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: 📦 Checkout project repo
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333

@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- name: 📦 Checkout project repo
55-
uses: actions/checkout@v3
55+
uses: actions/checkout@v4
5656
with:
5757
fetch-depth: 0
5858

0 commit comments

Comments
 (0)