From 7ae9a8113acdcf722630252ef9a05e8e84f77c93 Mon Sep 17 00:00:00 2001 From: cleanupcrashanrjank <47683354+cleanupcrashanrjank@users.noreply.github.com> Date: Tue, 5 May 2020 17:51:21 +0800 Subject: [PATCH] Add .circleci/config.yml --- .circleci/config.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..1bbb1d82b --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,25 @@ +# For a detailed guide to building and testing on iOS, read the docs: +# https://circleci.com/docs/2.0/testing-ios/ + +version: 2.1 + +jobs: + build: + + macos: + xcode: 11.0.0 # Specify the Xcode version to use + + steps: + - checkout + - run: bundle + - run: bundle exec pod install + - run: npm install + - run: fastlane scan # Run tests using Fastlane + + # Collect XML test results data to show in the UI, and save the same XML + # files under test-results folder in the Artifacts tab + - store_test_results: + path: test_output + - store_artifacts: + path: test_output + destination: scan-output