Skip to content

chore: Apply format to the XML source (#316) #315

chore: Apply format to the XML source (#316)

chore: Apply format to the XML source (#316) #315

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '*.md'
push:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
prepare_matrix:
runs-on: ubuntu-latest
outputs:
versions: ${{ steps.generate-matrix.outputs.active }}
steps:
- name: Select all active LTS versions of Node.js
id: generate-matrix
uses: msimerson/node-lts-versions@v1
test:
needs:
- prepare_matrix
strategy:
# TODO: remove after nodejs 22.5.1 is available
fail-fast: false
matrix:
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- run: npm install --no-package-lock
name: Install dev dependencies
- run: npm run lint
name: Run linter
- run: npm run test
name: Run unit tests
analyze_wda:
strategy:
matrix:
os: [macos-12, macos-13, macos-14]
xcode_version: [13, 14, 15]
exclude:
- os: macos-13
xcode_version: 13
- os: macos-14
xcode_version: 13
- os: macos-12
xcode_version: 15
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode_version }}
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgentLib analyze
popd
name: Analyze WebDriverAgentLib
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgentRunner analyze
popd
name: Analyze WebDriverAgentRunner
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme IntegrationTests analyze
popd
name: Analyze IntegrationTests
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgent analyze
popd
name: Analyze WebDriverAgent