Skip to content

Commit 913733a

Browse files
committed
fix(ci): install Maestro via curl instead of third-party action
1 parent 0556df9 commit 913733a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,9 @@ jobs:
170170
171171
- name: Install Maestro
172172
if: env.turbo_cache_hit != 1
173-
uses: dniHze/maestro-test-action@v1
173+
run: |
174+
curl -Ls "https://get.maestro.mobile.dev" | bash
175+
echo "$HOME/.maestro/bin" >> $GITHUB_PATH
174176
175177
- name: Boot iOS Simulator
176178
if: env.turbo_cache_hit != 1
@@ -186,9 +188,7 @@ jobs:
186188
187189
- name: Run Maestro tests
188190
if: env.turbo_cache_hit != 1
189-
run: |
190-
export PATH="$PATH":"$HOME/.maestro/bin"
191-
maestro test .maestro/ --format junit --output report.xml
191+
run: maestro test .maestro/ --format junit --output report.xml
192192

193193
- name: Upload test report
194194
if: always() && env.turbo_cache_hit != 1

0 commit comments

Comments
 (0)