-
Notifications
You must be signed in to change notification settings - Fork 7
55 lines (45 loc) · 1.34 KB
/
ci.yml
File metadata and controls
55 lines (45 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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