Skip to content

Ft/discovery

Ft/discovery #15

Workflow file for this run

name: Backend CI
on:
pull_request:
branches: ["main"]
paths:
- "backend/**"
- ".github/workflows/backend.yml"
jobs:
backend-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm ci
- run: npm run format -w backend
- run: npm run lint -w backend
- run: npm run test -w backend
- run: npm run typecheck -w backend