Skip to content

feat(ai-art): improve model UX prompt parsing and image caching #42

feat(ai-art): improve model UX prompt parsing and image caching

feat(ai-art): improve model UX prompt parsing and image caching #42

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm
- name: Install frontend dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build frontend
run: npm run build
- name: Install backend dependencies
run: npm run server:install
- name: Generate Prisma client
run: npm run prisma:generate
- name: Build backend
run: npm run server:build