From 77e635a924fa8a1b7f519ac7a44f59bf003b022b Mon Sep 17 00:00:00 2001 From: Alex Risch Date: Fri, 26 Jan 2024 11:08:26 -0700 Subject: [PATCH] iOS CI CI Build attempt --- .github/workflows/ios.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ios.yml diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml new file mode 100644 index 000000000..53e763ef6 --- /dev/null +++ b/.github/workflows/ios.yml @@ -0,0 +1,22 @@ +name: iOS +on: + pull_request: + # Uncomment once working + # files: + # - 'ios/**' + # - 'example/ios/**' + # - 'example/package.json' +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: actions/setup-node@v3 + - name: Build Example App + run: | + cd example + yarn + npx pod-install + yarn ios