Skip to main content
The Test Suite configuration allows you to define automated test runs that validate your code’s functionality before it is merged or deployed.
Test Suite Dashboard

Configuration

Define your test commands and environment requirements in revolte.yaml.
revolte.yaml
pipeline:
  testSuite:
    enabled: true
    command: "npm run test:ci"
    environment:
      node_version: "18"
    timeout: 300