unreal-chat/.forgejo/workflows/ci.yaml
Juan Sebastian Montoya 7ed7461a2b
Some checks failed
Lint and Check Types / Validations (push) Failing after 52s
chore: update turbo.json and CI workflow for Prisma integration
- Modified turbo.json to replace db:generate with prisma:generate in build and dev tasks.
- Enhanced CI workflow by adding a name to the validations job for better clarity.
2025-05-06 18:39:02 -05:00

21 lines
489 B
YAML

name: Lint and Check Types
on: [push]
jobs:
validations:
name: Validations
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install
run: npm install
- name: Prisma Generate
run: npm run prisma:generate
- name: Lint
run: npm run lint
- name: Check Types
run: npm run check-types