Skip to content

fix: do nothing for an empty array in w3c actions #59

fix: do nothing for an empty array in w3c actions

fix: do nothing for an empty array in w3c actions #59

Workflow file for this run

name: Functional Tests
on:
pull_request:
branches:
- master
paths-ignore:
- 'docs/**'
- '*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CI: true
jobs:
build:
strategy:
matrix:
xcodeVersion: ['13.4', '14.2']
platform: ['macos-12']
fail-fast: false
runs-on: ${{ matrix.platform }}
name: e2e
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "${{ matrix.xcodeVersion }}"
- run: |
npm install
export cwd=$(pwd)
pushd "$cwd"
cd ~
npm install -g appium
appium driver install --source=local "$cwd"
appium driver doctor mac2
popd
name: Install and run doctor checks