Skip to content

Instantly share code, notes, and snippets.

@eduardomoroni
Created May 29, 2018 11:55
Show Gist options
  • Save eduardomoroni/41157220cd7bae575ba3277bcffdeea5 to your computer and use it in GitHub Desktop.
Save eduardomoroni/41157220cd7bae575ba3277bcffdeea5 to your computer and use it in GitHub Desktop.
Como configurar TravisCI para um projeto React Native
# 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