fix: Support non-strict XPath queries #68
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 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: | |
# https://github.com/actions/runner-images/tree/main/images/macos | |
strategy: | |
matrix: | |
include: | |
- xcodeVersion: '14.3.1' | |
platform: macos-13 | |
- xcodeVersion: '15.4' | |
platform: macos-14 | |
- xcodeVersion: '16.0' | |
platform: macos-15 | |
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 |