Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Add .circleci/config.yml #2915

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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