Turborepo Remote Cache
Avrea provides a remote cache endpoint for Turborepo. Task outputs are cached so that unchanged packages skip builds entirely.
On Avrea runners
Section titled “On Avrea runners”Turborepo environment variables are pre-configured:
TURBO_API="http://avrea-host:8290"TURBO_TOKEN="unused"TURBO_TEAM="team_avrea"Your workflow needs no changes:
jobs: build: runs-on: avrea-ubuntu-latest steps: - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 24 - run: pnpm install --frozen-lockfile - run: pnpm turbo buildManual setup
Section titled “Manual setup”Set the environment variables in your workflow:
env: TURBO_API: "http://avrea-host:8290" TURBO_TOKEN: "unused" TURBO_TEAM: "team_avrea"No changes to turbo.json are required.