Skip to content

9apes Docs - Run GitHub Actions Jobs on 9apes

9apes gives teams faster GitHub Actions runners without requiring them to leave GitHub Actions.

Our runners are built for speed and security, using high single-core performance machines with NVMe disks to keep builds fast. Each job runs inside an ephemeral VM, giving every build strong isolation by default.

runs-on: ubuntu-latest
runs-on: 9apes

You keep your existing GitHub Actions workflows. For each job you want to run on 9apes, update the job’s runs-on value to a supported 9apes runner label.

jobs:
test:
runs-on: 9apes
steps:
- uses: actions/checkout@v4
- run: npm test