Skip to content

fix(deps): update weekly minor & patch updates #8055

fix(deps): update weekly minor & patch updates

fix(deps): update weekly minor & patch updates #8055

Workflow file for this run

name: CI
on:
push: {}
jobs:
build:
name: 'Build (${{ matrix.component }})'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
component: [client, server]
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
name: Install pnpm
with:
package_json_file: ${{ matrix.component }}/package.json
run_install: false
- uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'pnpm'
cache-dependency-path: ${{ matrix.component }}/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
working-directory: ${{ matrix.component }}
- name: Generate Prisma Types from Schema
run: npx prisma generate
if: ${{ matrix.component == 'server' }}
working-directory: server
- name: Build
run: pnpm run build
working-directory: ${{ matrix.component }}
check-auto-tt-deps:
name: 'Check Dependencies (auto-timetabler-server)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.14.4'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
working-directory: auto_server