Skip to content

fix: prisma db seed and details #3

fix: prisma db seed and details

fix: prisma db seed and details #3

Workflow file for this run

on:
pull_request:
types: [opened, synchronize]
push:
branches:
- dev
workflow_dispatch:
name: Lint, Tests and Build
jobs:
test:
name: Lint, Tests And Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm install
- run: npm run format
- run: npm run test
- run: npm run build