Startec

Startec

How I Sliced JS Apps Deployment Times to a Fraction

Mai 17, às 09:19

·

5 min de leitura

·

0 leituras

Imagine slashing your CI/CD pipeline time from 26 minutes down to a mere 1 minute. Sounds like a dream, right? Well, I've been there and done that at Notionlytics. All it took was a series of performance...
How I Sliced JS Apps Deployment Times to a Fraction

Imagine slashing your CI/CD pipeline time from 26 minutes down to a mere 1 minute.

Sounds like a dream, right?

Well, I've been there and done that at Notionlytics. All it took was a series of performance optimizations and some creative thinking.

So, let's dive in and explore the techniques I used to achieve this remarkable improvement.

Taylor swift dive

Switching Gears

Pnpm

First things first, I made two crucial infrastructure changes. I bid farewell to Yarn and embraced pnpm, the package manager known for its speed and efficiency. With its three-stage installation process, pnpm swiftly handled dependency resolution, directory structure calculation, and linking dependencies.

The outcome?

Significant improvements in installation times.

Turborepo

Moving on, I swapped NX with Turborepo for managing monorepos. Turborepo's caching tasks proved invaluable for storing results and logs of various scripts like build, test, and lint. Additionally, its parallel task execution significantly reduced build times.

NX is undoubtedly impressive, and truth be told—I became quite accustomed to it. Nevertheless, it's time to progress: Turborepo offers a simpler approach and feels much faster.

Cache Me If You Can

Pnpm

To maximize performance gains, I incorporated caching into our CI workflow.

By utilizing the actions/cache action action, we implemented a strategy to store and retrieve dependencies, preventing redundant installations.

Here's how it was done:

 - name: Configure pnpm cache
 id: pnpm-cache
 run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
 - uses: actions/[email protected]
 with:
 path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
 key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
 restore-keys: |
 ${{ runner.os }}-pnpm-store-

Enter fullscreen mode Exit fullscreen mode

Turborepo

Now for the exciting part: Turborepo caching. Firstly, the advantage lies in Turborepo's ability to remember the output after an initial build. Subsequent builds only rebuild what has changed.

But wait, there's more!

Turborepo also offers a Turborepo remote caching feature, allowing us to preserve build outputs between CI builds.

While Vercel serves as Turbo's default remote caching destination, I stumbled upon a remarkable find: setup-github-actions-caching-for-turbo - a GitHub Action that enables caching of build artifacts within GitHub Actions itself, without any additional cost!

Here's how to set it up:

 - name: Configure Turbo cache
 uses: dtinth/[email protected]

Enter fullscreen mode Exit fullscreen mode

It's as simple as that. The setup is hassle-free, and it works seamlessly.

An excited little girl

Deployments

Cloudflare Pages

Deployments are critical moments in the CI/CD pipeline, so I optimized this stage by transitioning from Vercel hosting to Cloudflare Pages.

Cloudflare Pages emerged as the clear winner due to its parallel deployments using the wrangler CLI, provision of forever-free static asset hosting, and lightning-fast file hashing.

One notable advantage is that the CLI used for deploying to Cloudflare automatically performs hash-checks on assets. This means that if you utilize code-splitting, only the changed chunks will be uploaded, resulting in faster deployments.

Semantic Release

To further streamline deployments, I introduced semantic-release. This tool automates commit tagging and tracks changes since the previous version. As a result, deployments now occur only when new tags are present, saving us valuable minutes.


The benchmark

So, let's talk numbers.

Initially, the monorepo comprising static Next.js sites, a React CRA app, and a Node.js API had a staggering CI/CD pipeline duration of 26 minutes and 49 seconds, regardless of the code changes. As the project grew, this time only increased.

However, after implementing all the performance optimizations, here are the results we achieved:

  • Without cache: 12 minutes and 6 seconds (a remarkable 50% reduction!)
  • With cache:
  • Node.js: 7 minutes and 1 second (still relatively slow due to building and pushing a Docker image)
  • React CRA app: 3 minutes and 22 seconds
  • Next.js app: 1 minute and 19 seconds
  • Infrastructure/docs/chore changes: just 1 minute and 2 seconds

I'd say those are some pretty good improvements: not only did we slash our CI/CD pipeline duration by more than half, but we now have a much faster response time for changes in any one part of the monorepo. We can now deliver features and bug fixes to production much faster, with much less stress.

Thanks for reading!

What are your thoughts on these outcomes? Any tips you want to share? Let's continue the conversation in the comments below.


P.S.: If you liked this - you might like some other things I've done recently:

AI-powered changelog updates on Slack, every Monday, with GitHub Actions

You'll never have to deal with outdated TODO comments again

Follow me on Twitter: @MaxPrilutskiy


Continue lendo

Marktechpost AI Research News

This AI Paper Shows How Diffusion Models Memorize Individual Images From Their Training Data And Emit Them At Generation Time
In recent years, image diffusion models such as DALL-E 2, Imagen, and Stable Diffusion have gained considerable attention for their remarkable ability to generate highly realistic synthetic images. However,...

Hoje, às 07:07

TabNews

Boilerplate Supabase + Typescrip + Zodios - Routes typesafe :) · CarlosZiegler
E ai pessoal, estou criando um boilerplate em um monorepo que implementa aith com supabase, estou usando Zodios, uma lib que ajuda a ter typesafe para criacao de rotas e ter essa tipagem...

Hoje, às 06:51

Stack Overflow Blog

For those who just don’t Git it (Ep. 573)
Pierre-Étienne Meunier, creator and lead developer of open-source version control system Pijul, joins the home team to talk about version control, functional programming, and why OCaml is a source of French national pride.

Hoje, às 04:40

hipsters.tech

Tecnologia no Serpro - Hipsters Ponto Tech #358 - Hipsters Ponto Tech
Hoje é papo é sobre o Serpro! Nesta conversa, falamos sobre o que é o Serpro, as tecnologias e sistemas digitais do governo que usamos no dia a dia que são desenvolvidos por eles e o concurso que está sendo...

Hoje, às 03:08

TabNews

Como otimizar uma consulta SQL contendo UNION · alexsndf
Olá a todos, Preciso otimizar a consulta MySQLi abaixo, A consulta é para exibir posts relacionados, estava funcioando tranquilo mas ultimamente o blog aumentou as visitas, aí começou a p...

Hoje, às 02:09

Tech Crunch

Daylight, the LGBTQ+ neobank, calls it quits
Daylight, an LGBTQ+ banking platform, is shutting down. Its operations will cease on June 30, according to embattled co-founder and CEO Rob Curtis.  The announcement comes months after NY Magazine published...

Hoje, às 01:20

IT Forum

Rolls-Royce usará computação quântica para desenvolver motores a jato - IT Forum
Foto: Divulgação A Nvidia, Rolls-Royce e Classiq, empresa de software quântico, estão utilizando computação quântica para desenvolver formas de levar maior eficiência a motores a jato. As empresas...

Hoje, às 00:21

AI | Techcrunch

Going for a walk with Shift’s Moonwalker electric shoe-skates
Perhaps I shouldn’t have been surprised to see someone skate-walking down the halls of Detroit’s Huntington Place convention center. Don’t get me wrong, there’s plenty of interesting stuff happening at...

Mai 22, às 23:37

Showmetech

Smartwatches com desconto de até 68% no AliExpress. Veja os modelos!
Índice Amazfit Bip U ProTabela de especificações – Amazfit Bip U ProAmazfit GTR 2 (nova versão)Tabela de especificações – Amazfit GTR 2Amazfit GTR 3Tabela de especificações – Amazfit GTR 3 A Amazfit, a...

Mai 22, às 23:22

Discovery

WhatsApp anuncia recurso de edição de mensagens enviadas
O WhatsApp anunciou hoje recurso de edição de mensagens enviadas, após ter sido divulgado que a plataforma estava trabalhando nessa funcionalidade no início do mês. A partir de agora, usuários do WhatsApp em...

Mai 22, às 22:41