Skip to content

v2.6.0

v2.6.0 #422

Workflow file for this run

name: e2e
on: [pull_request]
jobs:
build-run:
if: "contains(github.event.commits[0].message, '[include e2e]')"
runs-on: macos-11
steps:
- name: Setup Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: latest-stable
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Node
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: node --version
- name: Cache node modules
uses: actions/cache@v1
id: cache
with:
path: node_modules
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Rebuild detox
if: steps.cache.outputs.cache-hit == 'true'
run: yarn detox clean-framework-cache && yarn detox build-framework-cache
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Cache Pods
uses: actions/cache@v1
id: podcache
with:
path: ios/Pods
key: pods-${{ hashFiles('**/Podfile.lock') }}
- name: Update Pods
run: |
gem update cocoapods xcodeproj
cd ios && pod install && cd ..
- name: Prepare
run: |
brew tap wix/brew
brew install applesimutils
make build-env
make generate-locales
mv src/app.tsx src/app.tsx.old && cat src/app.tsx.old|perl -pe'BEGIN{undef $/;} s/if \(isJailBroken.+?}/\/\/ No root or jailbreak detection/gms' > src/app.tsx
- run: yarn detox build e2e --configuration ios.sim.release
- run: yarn cucumber-js ./e2e --configuration ios.sim.release
- name: Upload artifact files
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: artifact
path: e2e/artifacts/