Skip to content

chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /server #63

chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /server

chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /server #63

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm
- name: Install frontend dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build frontend
run: npm run build
- name: Install backend dependencies
run: npm run server:install
- name: Generate Prisma client
run: npm run prisma:generate
- name: Build backend
run: npm run server:build