chore(deps): bump which from 4.0.0 to 5.0.0 #139
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] | |
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 }} |