From 46f2d68c039ba68473fbe2008d1e09991fea6404 Mon Sep 17 00:00:00 2001 From: Dan Caseley Date: Sun, 26 Jul 2020 14:34:00 +0100 Subject: [PATCH] Initial workflow for iOS detox tests --- .github/workflows/ios_detox.yml | 47 +++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/ios_detox.yml diff --git a/.github/workflows/ios_detox.yml b/.github/workflows/ios_detox.yml new file mode 100644 index 000000000..1a8d5a684 --- /dev/null +++ b/.github/workflows/ios_detox.yml @@ -0,0 +1,47 @@ +name: iOS + +on: [push] + +jobs: + build: + runs-on: macos-latest + timeout-minutes: 15 + + env: + DEVELOPER_DIR: /Applications/Xcode_11.5.app + + steps: + - name: Checkout + uses: actions/checkout@v1 + with: + fetch-depth: 1 + + - name: Node + uses: actions/setup-node@v1 + + - name: Cache node modules + uses: actions/cache@v1 + id: npmcache + with: + path: node_modules + key: node-modules-${{ hashFiles('**/yarn.lock') }} + + - name: Rebuild detox + if: steps.npmcache.outputs.cache-hit == 'true' + run: yarn detox clean-framework-cache && yarn detox build-framework-cache + + - name: Install Dependencies + if: steps.npmcache.outputs.cache-hit != 'true' + run: yarn install + + - name: Cache Pods + uses: actions/cache@v1 + id: podcache + with: + path: ios/Pods + key: pods-${{ hashFiles('**/Podfile.lock') }} + + - run: brew tap wix/brew + - run: brew install applesimutils + - run: yarn detox build e2e --configuration ios.sim.release + - run: yarn detox test e2e/tests --configuration ios.sim.release \ No newline at end of file