A Nutshell Guide to React Native DevOps

Rate this content
Bookmark
Slides

In a nutshell, mobile DevOps best practises for React Native apps, from code to release.

12 min
02 Dec, 2022

Video Summary and Transcription

Today we are discussing the challenges faced by React native developers in mobile deployment. Automation is the key to spending less time on tasks and focusing on delivering features. There is a stage for monitoring mobile apps after release. Differentiating between iOS and Android, there are specific requirements for each. The FASTA file allows for configuring tasks and actions.

Available in Español

1. Mobile Deployment Challenges and Solutions

Short description:

Today we are discussing the challenges faced by React native developers in mobile deployment. Signing the application, complex configuration, testing, slow releases, and inflexible CI are some of the issues. Automation is the key to spending less time on tasks and focusing on delivering features. Mobile DevOps or mobile CICD process can address these challenges.

Hi, everyone. Thanks for having me today. My name is Motez and I'm working as a developer advocate at Bit-Trice. So, mainly, every day I'm helping the mobile developers to trying to figure out what are the challenges that they are facing, especially with cross-platform apps or native apps.

So, today we are talking about the mobile deployment. So, as we know, if you are working with React native apps, you have at the end you have two native applications, iOS and Android. And, as we know, each application required like workflows or steps or configurations so on. So, mainly that React native developers are facing like different requirements and processes and workflows for iOS and Android. So, you need to figure out how you can automatically doing it because you need to sign the application before using it to the App Store. As we know, it's not like the web application. You need to sign your application or certificate or provision profile or like secrets and then to be able to release it to the App Store.

Complex configuration, as we mentioned, testing as well. So, shall we run the UI testing on every request or shall we leave it before release? How we can run it? Which framework we are using? Shall we run the unit and UI test and everything for every request? So, how we can deal with this process? And slow releases as well. So, maybe there's a company is releasing every two months, which is huge. So, because if you are like, you have a business and you have different competitors in the market, which is if you wanted to release a new feature, this is a huge or a longer process to release every two months. So, we need to try to eliminate the process for two weeks at least. Like, two weeks release cadence. And inflexible and fragile CI. So, don't waste your time for fixing the CI server's problems and how we can or every day we are dealing with the different problems with the CI.

So, here, Scott Hanselman from Microsoft, as a program manager, he said like the most powerful tool we have as a developer is automation. Automation is not like UI testing. It's automation for everything. So, it can automate deployment, releases, code review or anything as much as we can, we should automate the process. So, the target is we need to spend less time on task that's slowed down or the developer downs and focus more on delivering the features. Because as we know, the developer hours is the main focus or the most important things for the companies. So, because of this, I believe the process that will fix these issues or these challenges, it will be a mobile DevOps or a mobile CICD like process. So, we started with a CICD strategy and then from the measuring or like planning phase. And then we have the strategy for a CICD. And then we are building and testing or releasing and building our mobile apps. And then we are monitoring our mobile apps.

2. Mobile App Monitoring and Automation

Short description:

There is a stage for monitoring mobile apps after release. Six steps for mobile developer adoption: planning, CICD strategy, building, testing, beta releases, and production releases. Automating the process involves pushing code to a source code repository, triggering the CI server build, and going through the continuous integration process. This includes cloning the code repository, installing dependencies, running static code analysis, unit and integration tests, and checking for issues. An iOS builder is also part of the process.

It's not like we just release it to the App Store. No, there is another stage for monitoring mobile apps. Such for example, if you wanted to monitor the app crashes or the application performance monitoring in general. So, once you release your mobile apps, you have another tool or another process to start reviewing and monitoring the mobile app release.

So, here we have six steps for a mobile developer adoption. As we mentioned, planning, CICD strategy, building, testing, beta releases. This is especially for mobile. Because maybe for web we don't have... maybe sometimes we are speaking in a web deployment about canary deployment or like blue-green. But this is required for mobile apps, which is beta releases that you are releasing to your beta testers to check that everything works fine in your application. And this can be for test flights, for example, for iOS or for Firebase app distribution or for the App Store, for internal channel. And production releases. And then we have a monitoring.

So, here, let's assume this is like the full process. So, I'm trying here to figure out how we can automate this process. So, for example, you just, like, create a code or like push a code. And then to the GitHub or any source code you are using, the request is raised. Maybe you can you have the CI server. And the CI server build is triggered. And then you are going to the continuous integration process, which is you are cloning the code repository, SSH key for, like, accessing the code. And then it starts installing, as we know, React native apps required. So, like, if you are using your ER. Then you can start running the static code analysis. This will be like the first step. Then you can run a unit and integration test. And maybe you will have a coverage report. And then if everything is okay, it'll check bus. So, this is like the first stage. This is for the React native or maybe for the JavaScript or TypeScript application. Then you have an iOS builder.

3. Differentiating between iOS and Android

Short description:

Differentiating between iOS and Android, there are specific requirements for each. Steps include installing dependencies, Xcode build, auto code signing, and running end-to-end UI tests. Early detection of issues in the continuous integration stage allows for quick resolution. The concept of failing fast helps avoid problems in production. For Android, the process includes running the bundle debug task, signing the application, and running UI tests. Continuous deployment presents challenges, and running all tasks sequentially can be time-consuming. Implementing pipelines and using Fastlane are possible solutions.

From here, we start to differentiate between iOS and Android. And as I mentioned, it's totally different requirements. So, for example here, maybe you need to run or install like start installing the KukuBots dependencies, then Xcode build and then auto code signing. There's a mechanism or a step for auto code signing or signing the application automatically. And at the end, you'll have the IP.

Then after that, you can run the end-to-end UI testing. Maybe it can be with Detox, which is the framework that support React native apps or maybe you can use Appium, this is the open source for mobile apps. And then you are uploading the artifacts. Then if everything is okay, so now we are continuously like doing the stages or step by step. And even if we have a problem, let's say we have a problem in the continuous integration stage, maybe in the unit and integration test. This will be useful for the team because in this stage, you found the problem early. So, if you are running UI test or unit test or integration and then it's crashed or you have a problem, then you will figure out in the early stages in the development so we are still in the pull request.

So, you can imagine this issue is the customer find it on the app store or in the application after release the mobile app. So, you need to release another version or another hotfix and you need to do this process again from the scratch. So, this help us to fail fast. So, this is like a concept of fail fast. So, we are failing fast and we are here like moving a shift lift in testing and running is a test in early stages on the code development to avoid any other problem or issues on the life or the production. This is the same for iOS, it's only the different things here, we are using different comments like, for example, for Android, we are assemble or run the bundle debug task which is will give us the application and then we are signing your application, signing our application and then also it will be the same for running the UI test or running the end-to-end test. With continuous deployment we are here, maybe we can run like deploy to the Firebase app store distribution or to Google Play Store. Here, we will find another challenge. So, shall we run all of these things in sequential like run the iOS build first and then run the Android in one workflow? This will be the problem, so maybe it will take time. So now, we need to think about another challenge after we implemented a CICD solution, which is pipelines. So, we can run different workflows in barrel at the same time, for example, let's assume that the first one is a workflow one which was the continuous integration to running a unit of jQuery. So, we can run it first if it's green, so then, we can start the iOS and Android in barrel at the same time, to save our time because now, if we are running this and before releases, this will take time. So, now, we can think about the build pipelines. And also, we have another choice. You can implement or you can use a Fastlane. Anyone here using Fastlane? Okay. So, Fastlane is a Ruby-based file. It's a Ruby configuration file.

4. FASTA File and Mobile DevOps

Short description:

The FASTA file allows for configuring tasks and actions. Different lanes can be used for Android and iOS, with specific tasks for beta testing and deployment. To address challenges, consider using dedicated servers or cloud CI-CD. Cloud CI-CD offers easy project setup, a clean environment, customizable workflows, seamless code signing, and automated testing. Mobile DevOps is a mindset that requires coordination between teams and automation. It is a journey, not a destination.

It's called the FASTA file. So, with FASTA file, you can configure everything as a task or as an action. So, for example, here in Android, in Android section, you can, for example, have, like, submit a new beta to, like, Crashlytics or to Firebase or Crashlytics from Firebase. And for Android, for example, you can have a task, a specific task for uploading it to the test flight for beta testers. So, here is, you can have a task or action. It's called action and that. So, you have different lanes as we find here. So, the description, this is the lane. So, we have a lane is beta and the lane is deployed. And for iOS, we have lane beta as well. So, you can add incrementable number, which is because you are releasing a new build. Or taking screenshots for the metadata or for the App Store and also deploying it to the App Store, you can have like another task for this one.

So, now, to fix this problem or the challenges that we are facing, we need to think about, shall we use like dedicated servers or our infrastructure for CI-CD? As we mentioned previously in the challenges, we have a problem that maybe sometimes we have a flaky like or we have a like configuration issues in the CI server. So, this is usually you need to start thinking about the Cloud CI-CD or cloud continuous integration. Because easy project setup, you can just like clone your project on GitHub and start building it. It really makes the environment especially for mobile, so you can imagine if you have a clean environment and every time you are installing in VM or you are, but if you have a predefined environment is included all the tools that you are using for your mobile app, this will save time for sure. And the customizable workflows, as we know, we have different workflows for iOS and Android, seamless code signing for iOS and Android and automated unit integration and the tests, there are different steps can help you in this process. And distribute react native app was easy.

So at the end, the idea is a mobile DevOps is a mindset. But we need to agree as a team, which process or which platform we need to use. It's a mindset, culture, process, and the tools. CI-CD is a coordination process between the different teams to remove any silos from the operations, development, product, and so on. This automation is a vital part of mobile DevOps. And it's a journey, not a destination. As we know, it's accumulated work during like maybe one year to reach it to this full cycle for the process. And thank you. Thank you.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

React Advanced Conference 2021React Advanced Conference 2021
19 min
Automating All the Code & Testing Things with GitHub Actions
Top Content
Code tasks like linting and testing are critical pieces of a developer’s workflow that help keep us sane like preventing syntax or style issues and hardening our core business logic. We’ll talk about how we can use GitHub Actions to automate these tasks and help keep our projects running smoothly.
DevOps.js Conf 2022DevOps.js Conf 2022
33 min
Fine-tuning DevOps for People over Perfection
Demand for DevOps has increased in recent years as more organizations adopt cloud native technologies. Complexity has also increased and a "zero to hero" mentality leaves many people chasing perfection and FOMO. This session focusses instead on why maybe we shouldn't adopt a technology practice and how sometimes teams can achieve the same results prioritizing people over ops automation & controls. Let's look at amounts of and fine-tuning everything as code, pull requests, DevSecOps, Monitoring and more to prioritize developer well-being over optimization perfection. It can be a valid decision to deploy less and sleep better. And finally we'll examine how manual practice and discipline can be the key to superb products and experiences.
DevOps.js Conf 2022DevOps.js Conf 2022
27 min
Why is CI so Damn Slow?
We've all asked ourselves this while waiting an eternity for our CI job to finish. Slow CI not only wrecks developer productivity breaking our focus, it costs money in cloud computing fees, and wastes enormous amounts of electricity. Let’s take a dive into why this is the case and how we can solve it with better, faster tools.
DevOps.js Conf 2022DevOps.js Conf 2022
31 min
The Zen of Yarn
In the past years Yarn took a spot as one of the most common tools used to develop JavaScript projects, in no small part thanks to an opinionated set of guiding principles. But what are they? How do they apply to Yarn in practice? And just as important: how do they benefit you and your projects?
In this talk we won't dive into benchmarks or feature sets: instead, you'll learn how we approach Yarn’s development, how we explore new paths, how we keep our codebase healthy, and generally why we think Yarn will remain firmly set in our ecosystem for the years to come.
React Advanced Conference 2023React Advanced Conference 2023
29 min
Raising the Bar: Our Journey Making React Native a Preferred Choice
At Microsoft, we're committed to providing our teams with the best tools and technologies to build high-quality mobile applications. React Native has long been a preferred choice for its high performance and great user experience, but getting stakeholders on board can be a challenge. In this talk, we will share our journey of making React Native a preferred choice for stakeholders who prioritize ease of integration and developer experience. We'll discuss the specific strategies we used to achieve our goal and the results we achieved.

Workshops on related topic

React Advanced Conference 2022React Advanced Conference 2022
81 min
Introducing FlashList: Let's build a performant React Native list all together
Top Content
WorkshopFree
In this workshop you’ll learn why we created FlashList at Shopify and how you can use it in your code today. We will show you how to take a list that is not performant in FlatList and make it performant using FlashList with minimum effort. We will use tools like Flipper, our own benchmarking code, and teach you how the FlashList API can cover more complex use cases and still keep a top-notch performance.You will know:- Quick presentation about what FlashList, why we built, etc.- Migrating from FlatList to FlashList- Teaching how to write a performant list- Utilizing the tools provided by FlashList library (mainly the useBenchmark hook)- Using the Flipper plugins (flame graph, our lists profiler, UI & JS FPS profiler, etc.)- Optimizing performance of FlashList by using more advanced props like `getType`- 5-6 sample tasks where we’ll uncover and fix issues together- Q&A with Shopify team
React Summit 2022React Summit 2022
117 min
Detox 101: How to write stable end-to-end tests for your React Native application
Top Content
WorkshopFree
Compared to unit testing, end-to-end testing aims to interact with your application just like a real user. And as we all know it can be pretty challenging. Especially when we talk about Mobile applications.
Tests rely on many conditions and are considered to be slow and flaky. On the other hand - end-to-end tests can give the greatest confidence that your app is working. And if done right - can become an amazing tool for boosting developer velocity.
Detox is a gray-box end-to-end testing framework for mobile apps. Developed by Wix to solve the problem of slowness and flakiness and used by React Native itself as its E2E testing tool.
Join me on this workshop to learn how to make your mobile end-to-end tests with Detox rock.
Prerequisites- iOS/Android: MacOS Catalina or newer- Android only: Linux- Install before the workshop
React Summit Remote Edition 2021React Summit Remote Edition 2021
60 min
How to Build an Interactive “Wheel of Fortune” Animation with React Native
Top Content
Workshop
- Intro - Cleo & our mission- What we want to build, how it fits into our product & purpose, run through designs- Getting started with environment set up & “hello world”- Intro to React Native Animation- Step 1: Spinning the wheel on a button press- Step 2: Dragging the wheel to give it velocity- Step 3: Adding friction to the wheel to slow it down- Step 4 (stretch): Adding haptics for an immersive feel
React Advanced Conference 2023React Advanced Conference 2023
159 min
Effective Detox Testing
Workshop
So you’ve gotten Detox set up to test your React Native application. Good work! But you aren’t done yet: there are still a lot of questions you need to answer. How many tests do you write? When and where do you run them? How do you ensure there is test data available? What do you do about parts of your app that use mobile APIs that are difficult to automate? You could sink a lot of effort into these things—is the payoff worth it?
In this three-hour workshop we’ll address these questions by discussing how to integrate Detox into your development workflow. You’ll walk away with the skills and information you need to make Detox testing a natural and productive part of day-to-day development.
Table of contents:
- Deciding what to test with Detox vs React Native Testing Library vs manual testing- Setting up a fake API layer for testing- Getting Detox running on CI on GitHub Actions for free- Deciding how much of your app to test with Detox: a sliding scale- Fitting Detox into you local development workflow
Prerequisites
- Familiarity with building applications with React Native- Basic experience with Detox- Machine setup: a working React Native CLI development environment including either Xcode or Android Studio
DevOps.js Conf 2022DevOps.js Conf 2022
152 min
MERN Stack Application Deployment in Kubernetes
Workshop
Deploying and managing JavaScript applications in Kubernetes can get tricky. Especially when a database also has to be part of the deployment. MongoDB Atlas has made developers' lives much easier, however, how do you take a SaaS product and integrate it with your existing Kubernetes cluster? This is where the MongoDB Atlas Operator comes into play. In this workshop, the attendees will learn about how to create a MERN (MongoDB, Express, React, Node.js) application locally, and how to deploy everything into a Kubernetes cluster with the Atlas Operator.