Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actions/android-e2e/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ runs:
run: pnpm install --frozen-lockfile
shell: bash

- name: Build Metro packages
run: npx nx run-many --targets=build --projects=tag:type:metro --parallel=4
shell: bash

- name: Install Maestro CLI
run: |
curl -Ls "https://get.maestro.mobile.dev" | bash
Expand Down
4 changes: 4 additions & 0 deletions .github/actions/ios-e2e/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ runs:
run: pnpm install --frozen-lockfile
shell: bash

- name: Build Metro packages
run: npx nx run-many --targets=build --projects=tag:type:metro --parallel=4
shell: bash

- name: Install Maestro CLI and iOS Utilities
run: |
curl -Ls "https://get.maestro.mobile.dev" | bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
secrets: inherit

e2e-metro:
needs: [checkout-install, build-metro]
needs: checkout-install
uses: ./.github/workflows/e2e-metro.yml
secrets: inherit

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-metro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
app_name: [example-host]
app_name: [metro-example-host]
env:
ANDROID_EMULATOR_API_LEVEL: 28
ANDROID_EMULATOR_TARGET: default
Expand All @@ -36,7 +36,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
app_name: [example-host]
app_name: [metro-example-host]
env:
RUBY_VERSION: 2.7.6
MAESTRO_VERSION: 1.39.13
Expand Down
2 changes: 1 addition & 1 deletion apps/metro-example-host/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "example-host",
"name": "metro-example-host",
"version": "0.0.1",
"private": true,
"scripts": {
Expand Down
Loading