Skip to content

added lock file

added lock file #4512

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: actions/setup-node@v4
with:
node-version: '20'
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 7
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-${{ matrix.component }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
working-directory: ${{ matrix.component }}
- name: Generate Prisma Types from Schema
run: npx prisma generate
working-directory: ${{ matrix.component }}
- 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.10.4'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
working-directory: auto_server