ci testing 1 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true # auto cancel prev. run | |
env: | |
MAESTRO_VERSION: 1.31.0 | |
ANDROID_ARCH: x86_64 | |
jobs: | |
android-e2e: | |
name: E2e Tests π§ͺ | |
runs-on: macos-12 # or buildjet-4vcpu-ubuntu-2204, ubuntu-22.04-4core, macos-12-xl | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v3 | |
- name: Installing Maestro π₯ | |
run: curl -Ls "https://get.maestro.mobile.dev" | bash # will use `MAESTRO_VERSION` from env | |
# - name: Validate Gradle Wrapper π | |
# uses: gradle/wrapper-validation-action@v1 | |
# | |
# - name: Copy CI gradle.properties π | |
# run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
# | |
# - name: Set up JDK 17 βοΈ | |
# uses: actions/setup-java@v3 | |
# with: | |
# distribution: 'zulu' | |
# java-version: 17 | |
# | |
# - name: Setup Gradle βοΈ | |
# uses: gradle/gradle-build-action@v2 | |
- name: Setup environment βοΈ | |
env: | |
ENV_VAR_FILE_NAME: debug.properties | |
run: | | |
echo 'API_BASE_URL="https://api.staging.crisiscleanup.io"' >> ${{ env.ENV_VAR_FILE_NAME }} | |
echo 'BASE_URL="http://localhost:8080"' >> ${{ env.ENV_VAR_FILE_NAME }} | |
echo 'MAPS_API_KEY="${{ secrets.MAPS_API_KEY }}"' >> ${{ env.ENV_VAR_FILE_NAME }} | |
echo 'DEBUG_EMAIL_ADDRESS="${{ secrets.TEST_APP_EMAIL_PROD }}"' >> ${{ env.ENV_VAR_FILE_NAME }} | |
echo 'DEBUG_ACCOUNT_PASSWORD="${{ secrets.TEST_APP_PASSWORD_PROD }}"' >> ${{ env.ENV_VAR_FILE_NAME }} | |
# - name: Build apk for emulator ποΈ | |
# run: | | |
# ./gradlew assembleDebug --no-daemon -PreactNativeArchitectures=${{ env.ANDROID_ARCH }} | |
# | |
# echo "Print path to *.apk file" | |
# find . -type f -name "*.apk" | |
# - name: Upload build outputs (APKs) π€ | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: apks | |
# path: '**/build/outputs/apk/**/*.apk' | |
- name: Run E2e tests π§ͺ | |
uses: reactivecircus/android-emulator-runner@v2 | |
env: | |
# APK_PATH: ./app/build/outputs/apk/demo/debug/app-demo-debug.apk | |
APK_PATH: ./app/app-demo-debug.apk | |
MAESTRO_DRIVER_STARTUP_TIMEOUT: 60000 | |
MAESTRO_APP_ID: com.crisiscleanup.demo.debug | |
MAESTRO_APP_EMAIL: ${{ secrets.TEST_APP_EMAIL_PROD }} | |
MAESTRO_APP_PASSWORD: ${{ secrets.TEST_APP_PASSWORD_PROD }} | |
with: | |
api-level: 33 | |
target: google_apis | |
arch: ${{ env.ANDROID_ARCH }} | |
script: | | |
adb install "${{ env.APK_PATH }}" | |
$HOME/.maestro/bin/maestro test .maestro/auth-tests --format junit | |
$HOME/.maestro/bin/maestro test .maestro/work-tests --format junit | |
- name: Upload test results π€ | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: e2e_android_report | |
path: | | |
/Users/runner/.maestro/tests |