chore(deps-dev): bump appium from 2.4.1 to 2.5.0 #53
Workflow file for this run
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: Functional iOS App Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
pull_request_target: | |
jobs: | |
ios-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/ios.simulator.wdio.native.app.v1.0.8.zip -P apps | |
- name: 📬 Upload App to Sauce Labs | |
run: | | |
curl -v \ | |
-F "payload=@./apps/ios.simulator.wdio.native.app.v1.0.8.zip" \ | |
-F name=wdio-demo-app-ios.zip \ | |
-u "${{ secrets.SAUCE_USERNAME }}:${{ secrets.SAUCE_ACCESS_KEY }}" \ | |
'https://api.eu-central-1.saucelabs.com/v1/storage/upload' | |
- name: 📲 Run Tests on an iOS Simulator | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
run: npm run ios.sauce.simulators.app.eu | |
# Not needed now we are running on Sauce Labs | |
# - name: 💾 Save server output | |
# if: failure() | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: iOS-runner-output | |
# path: | | |
# logs/ |