Created
May 29, 2018 11:55
-
-
Save eduardomoroni/41157220cd7bae575ba3277bcffdeea5 to your computer and use it in GitHub Desktop.
Como configurar TravisCI para um projeto React Native
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file contains the fastlane.tools configuration | |
# You can find the documentation at https://docs.fastlane.tools | |
platform :ios do | |
desc "Runs all the tests" | |
lane :test do | |
# https://docs.fastlane.tools/actions/scan/ | |
scan( | |
project: "ios/ReactNativeTravisCI.xcodeproj", | |
scheme: "ReactNativeTravisCI" | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment