main
Some checks failed
CI / build (push) Failing after 1m58s

This commit is contained in:
2026-01-26 23:22:38 +03:00
commit 6ef44f398d
110 changed files with 23268 additions and 0 deletions

32
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,32 @@
name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Generate Prisma Client
run: npx prisma generate
- name: Lint
run: npm run lint
- name: Build
run: npm run build