create pr gate workflow (#22)

* create pr gate workflow

* try this
This commit is contained in:
Baobeld 2024-12-19 22:53:12 -05:00 committed by GitHub
parent abc30a2a03
commit 264f6d775d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 29 additions and 11 deletions

View file

@ -11,7 +11,7 @@
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test": "bun run test:unit -- --run && bun run test:e2e",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:e2e": "playwright test",
@ -20,7 +20,8 @@
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:reset": "prisma migrate reset --force",
"prisma:studio": "prisma studio"
"prisma:studio": "prisma studio",
"prisma:validate": "prisma validate"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
@ -75,4 +76,4 @@
"tailwind-merge": "^2.5.5",
"zod": "^3.24.0"
}
}
}