Skip to content

Commit

Permalink
Add prisma generate schema path
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelLefkowitz committed Jun 27, 2024
1 parent 8a594ad commit e24c0eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: |
docker run --rm -d -p 5432:5432 -e POSTGRES_DB=db -e POSTGRES_USER=user -e POSTGRES_PASSWORD=password postgres:13
docker run --rm -d -p 11211:11211 memcached:1.6.9
yarn prisma generate
yarn prisma generate --schema ./test/prisma/schema.prisma
yarn prisma migrate dev --schema ./test/prisma/schema.prisma
yarn test
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ docker run --rm -d \

```bash
export DATABASE_URL=postgresql://user:password@localhost:5432/db
yarn prisma generate
yarn prisma generate --schema ./test/prisma/schema.prisma
yarn prisma migrate dev --schema ./test/prisma/schema.prisma
```

Expand Down

0 comments on commit e24c0eb

Please sign in to comment.