Skip to content

build: Added saving of screenshots and sources #8

build: Added saving of screenshots and sources

build: Added saving of screenshots and sources #8

Workflow file for this run

name: Appium Tests
on:
push:
pull_request:
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Get npm cache directory
id: npm-cache-dir
shell: bash
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
- uses: actions/cache@v3
id: npm-cache
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Appium
run: npm install -g appium
- name: Install UIAutomator2
run: appium driver install uiautomator2
- name: Install dependencies
run: npm install
working-directory: ./tests
- name: Start Appium server
run: appium &
- name: Run emulator and tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
script: ./gradlew assembleDebug && cd tests && npm run test
- name: Upload Artifacts
if: failure()
uses: actions/upload-artifact@v3
with:
path: |
tests/failures
!tests/failures/sources/.gitignore
!tests/failures/screenshots/.gitignore