Continuous Integration
Turborepo not only speeds up builds, but also the rest of your Continuous Integration pipeline by using Remote Caching. Below are a few platform recipes to use Turborepo with your CI providers.
General Setup
To enable Remote Caching for your CI:
-
Setup the environment variables for Turborepo in your CI to access your Remote Cache.
Variable Description TURBO_TOKEN
The Bearer token to access the Remote Cache TURBO_TEAM
The account name associated with your repository -
Clone your repository.
-
Install your dependencies through your package manager.
-
Run your tasks through
turbo
.
Was this helpful?