ci: Bump macos version #125
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 | |
# https://github.com/actions/runner-images/tree/main/images/macos | |
jobs: | |
e2e: | |
runs-on: macos-14 | |
env: | |
CI: true | |
PLATFORM_VERSION: '17.5' | |
XCODE_VERSION: '15.4' | |
DEVICE_NAME: 'iPhone 15' | |
PYTHON_VERSION: '3.9' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: ${{ env.XCODE_VERSION }} | |
- uses: futureware-tech/simulator-action@v3 | |
with: | |
model: ${{ env.DEVICE_NAME }} | |
os_version: ${{ env.PLATFORM_VERSION }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- run: | | |
brew tap facebook/fb | |
brew install idb-companion || true | |
python${PYTHON_VERSION} -m pip install --user fb-idb | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
check-latest: true | |
- run: npm install | |
- run: | | |
export PATH="${PATH}:python${PYTHON_VERSION} -c 'import site; print(site.USER_BASE)')/bin" | |
_FORCE_LOGS=1 npm run e2e-test |