Skip to content

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

fix(deps): update weekly minor & patch updates

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

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@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
package_json_file: ${{ matrix.component }}/package.json
run_install: false
- uses: actions/setup-node@v4
with:
node-version: '22'
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@v4
- uses: actions/setup-python@v5
with:
python-version: '3.14.2'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
working-directory: auto_server