Skip to content

refactor: use turbo also for the backend and ci fixed #2

refactor: use turbo also for the backend and ci fixed

refactor: use turbo also for the backend and ci fixed #2

Workflow file for this run

name: Backend CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
backend:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install dependencies
run: bun install
- name: Run backend tasks with Turborepo
run: bunx turbo run lint check-types test build --filter=@sourcemaps/backend