Skip to content

build(deps-dev): bump eslint-config-prettier from 9.1.2 to 10.1.8 in /frontend #25

build(deps-dev): bump eslint-config-prettier from 9.1.2 to 10.1.8 in /frontend

build(deps-dev): bump eslint-config-prettier from 9.1.2 to 10.1.8 in /frontend #25

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
backend:
name: Backend (Rust)
runs-on: ubuntu-24.04
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
workspaces: backend
- run: cargo fmt --check
- run: cargo clippy --all-targets -- -D warnings
# SQLX_OFFLINE keeps sqlx from requiring a live DB at compile time.
- env:
SQLX_OFFLINE: "true"
run: cargo test --all-features
frontend:
name: Frontend (SvelteKit)
runs-on: ubuntu-24.04
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
cache-dependency-path: frontend/package.json
- run: npm install --no-audit --no-fund
- run: npm run lint
- run: npm run check
- run: npm run test:unit -- --run
- run: npm run build