chore: Bump conventional-changelog-conventionalcommits from 6.1.0 to 7.0.1 #52
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: | |
e2e: | |
runs-on: macos-12 | |
env: | |
PLATFORM_VERSION: '16.0' | |
XCODE_VERSION: '14.0' | |
DEVICE_NAME: iPhone 11 Pro Max | |
PYTHON_VERSION: '3.7' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: ${{ env.XCODE_VERSION }} | |
- run: xcrun simctl list | |
- run: brew install [email protected] | |
- run: | | |
brew tap facebook/fb | |
# use 1.1.7 because xctest doesn't seem to work with 1.1.8 https://github.com/facebook/idb/issues/811 | |
pushd /usr/local/Homebrew/Library/Taps/facebook/homebrew-fb | |
git checkout f660049bdec9965934973052e6331119a4985096 | |
brew install idb-companion || true | |
popd | |
/usr/local/opt/[email protected]/bin/python3.7 -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}:$(/usr/local/opt/[email protected]/bin/python3.7 -c 'import site; print(site.USER_BASE)')/bin" | |
_FORCE_LOGS=1 npm run e2e-test |