Skip to content

chore(deps-dev): bump appium from 2.4.1 to 2.5.1 #103

chore(deps-dev): bump appium from 2.4.1 to 2.5.1

chore(deps-dev): bump appium from 2.4.1 to 2.5.1 #103

Workflow file for this run

name: Functional Android App Tests
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
pull_request_target:
jobs:
android-app:
runs-on: ubuntu-latest
# Src: https://hugo.alliau.me/posts/2021-05-04-migration-to-github-native-dependabot-solutions-for-auto-merge-and-action-secrets.html#share-your-secrets-with-dependabot
# If the PR is coming from a fork (pull_request_target), ensure it's opened by "dependabot[bot]".
# Otherwise, clone it normally.
if: |
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]') ||
(github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]')
steps:
- name: ⬇️ Checkout Repository
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v3
- name: ⬇️ Checkout PR Repository
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: 🟢 Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: 🧩 Install Dependencies
run: |
npm ci
- name: 📦 Download app
run: |
mkdir -p apps
wget https://github.com/webdriverio/native-demo-app/releases/download/v1.0.8/android.wdio.native.app.v1.0.8.apk -P apps
- name: 📬 Upload App to Sauce Labs
run: |
curl -v \
-F "payload=@./apps/android.wdio.native.app.v1.0.8.apk" \
-F name=wdio-demo-app-android.apk \
-u "${{ secrets.SAUCE_USERNAME }}:${{ secrets.SAUCE_ACCESS_KEY }}" \
'https://api.eu-central-1.saucelabs.com/v1/storage/upload'
- name: 📲 Run Tests on an Android Emulator
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
run: npm run android.sauce.emulators.app.eu
# Not needed now we are running on Sauce Labs
# - name: 💾 Save server output
# if: failure()
# uses: actions/upload-artifact@v4
# with:
# name: android-runner-output
# path: |
# logs/