feat: build with latest atoms #293
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] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
strategy: | |
matrix: | |
include: | |
- os: macos-15 | |
xcode: '16.2' | |
ios: '18.2' | |
device: iPhone 16 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
env: | |
PLATFORM_VERSION: ${{ matrix.ios }} | |
XCODE_VERSION: ${{ matrix.xcode }} | |
DEVICE_NAME: ${{ matrix.device }} | |
_LOG_TIMESTAMP: 1 | |
_FORCE_LOGS: 1 | |
CI: true | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: ${{ matrix.xcode }} | |
- run: xcrun simctl list | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
check-latest: true | |
- name: Prepare iOS simulator | |
id: prepareSimulator | |
uses: futureware-tech/simulator-action@v4 | |
with: | |
model: "${{ matrix.device }}" | |
os_version: "${{ matrix.ios }}" | |
shutdown_after_job: false | |
wait_for_boot: true | |
- run: xcrun simctl openurl booted "https://google.com" & | |
- run: npm install | |
- run: npm run e2e-test |