Skip to main content
The Pre‑build Workflow allows you to define checks and automation that run before your service is built and deployed to a specific environment.

Configuration

In your revolte.yaml, you can enable or disable pre‑build features per environment:
revolte.yaml
revolte:
  version: "1.0"
  project: Sideline HQ
  appName: sideline-web-admin

  env:
    production:
      branch: main
      codeReview: true
      codeQuality: true
      testSuite: true
      automationTestSuite: true

Key modules

  • Code Review: Activates AI‑driven PR summarization and fix suggestions.
  • Code Quality: Enforces linting and style rules.
  • Test Suite: Executes your unit and integration tests.
  • Automation Test Suite: Runs end‑to‑end automation tests.

Next steps