Skip to content

Commit 5a927ee

Browse files
committed
chore: update android run script
1 parent 1edefdb commit 5a927ee

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/e2e-test.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,16 @@ jobs:
3131
npm run run-e2e-ios
3232
3333
android:
34-
if: false
35-
runs-on: macos-14
34+
if: true
35+
runs-on: macos-latest
3636
steps:
3737
- uses: actions/checkout@v4
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
40+
- name: Install Node.js
41+
uses: actions/setup-node@v4
42+
with:
43+
node-version: 20
4044
- uses: actions/setup-java@v4
4145
with:
4246
distribution: 'zulu'
@@ -47,8 +51,11 @@ jobs:
4751
- name: Sdk
4852
run: |
4953
yes Y | sdkmanager --licenses
54+
- run: |
55+
npm i
56+
npm run build
5057
- name: "Run Tests"
5158
run: |
5259
curl -Ls "https://get.maestro.mobile.dev" | bash
5360
export PATH="$PATH":"$HOME/.maestro/bin"
54-
./e2e/scripts/RunAndroidTest.sh
61+
npm run run-e2e-android

0 commit comments

Comments
 (0)