We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1edefdb commit 5a927eeCopy full SHA for 5a927ee
.github/workflows/e2e-test.yml
@@ -31,12 +31,16 @@ jobs:
31
npm run run-e2e-ios
32
33
android:
34
- if: false
35
- runs-on: macos-14
+ if: true
+ runs-on: macos-latest
36
steps:
37
- uses: actions/checkout@v4
38
env:
39
GITHUB_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
40
+ - name: Install Node.js
41
+ uses: actions/setup-node@v4
42
+ with:
43
+ node-version: 20
44
- uses: actions/setup-java@v4
45
with:
46
distribution: 'zulu'
@@ -47,8 +51,11 @@ jobs:
47
51
- name: Sdk
48
52
run: |
49
53
yes Y | sdkmanager --licenses
54
+ - run: |
55
+ npm i
56
+ npm run build
50
57
- name: "Run Tests"
58
59
curl -Ls "https://get.maestro.mobile.dev" | bash
60
export PATH="$PATH":"$HOME/.maestro/bin"
- ./e2e/scripts/RunAndroidTest.sh
61
+ npm run run-e2e-android
0 commit comments