Skip to content

chore(deps-dev): bump mocha from 10.8.2 to 11.0.1 #140

chore(deps-dev): bump mocha from 10.8.2 to 11.0.1

chore(deps-dev): bump mocha from 10.8.2 to 11.0.1 #140

Workflow file for this run

name: Functional Tests
on: [pull_request]
jobs:
test:
# https://github.com/actions/runner-images/tree/main/images/macos
strategy:
matrix:
include:
- xcodeVersion: '14.3.1'
iosVersion: '16.4'
deviceName: 'iPhone 14'
platform: macos-13
- xcodeVersion: '15.4'
iosVersion: '17.5'
deviceName: 'iPhone 15'
platform: macos-14
fail-fast: false
env:
CI: true
_FORCE_LOGS: 1
DEVICE_NAME: ${{ matrix.deviceName }}
XCODE_VERSION: ${{ matrix.xcodeVersion }}
IOS_SDK: ${{ matrix.iosVersion }}
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
check-latest: true
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "${{ matrix.xcodeVersion }}"
- run: xcrun simctl list
name: List devices
- run: npm install
name: Install dev dependencies
- run: npm run e2e-test
name: Run e2e tests on Xcode@${{ matrix.xcodeVersion }}