feat: add timeout option for exec #124
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] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
include: | |
- xcodeVersion: '13.1' | |
iosVersion: '15.0' | |
deviceName: iPhone 13 | |
- xcodeVersion: '14.2' | |
iosVersion: '16.2' | |
deviceName: iPhone 14 | |
env: | |
CI: true | |
_FORCE_LOGS: 1 | |
DEVICE_NAME: ${{ matrix.deviceName }} | |
XCODE_VERSION: ${{ matrix.xcodeVersion }} | |
IOS_SDK: ${{ matrix.iosVersion }} | |
# https://github.com/actions/runner-images/tree/main/images/macos | |
runs-on: macos-12 | |
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 }} |