Skip to content

Commit f33b102

Browse files
committed
test: use npm and pnpm to invoke prisma commands
1 parent 16da9cd commit f33b102

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ let
5050
echo "testing npm"
5151
cd npm
5252
npm ci
53-
./node_modules/.bin/prisma generate
53+
npm prisma generate
5454
'';
5555
};
5656
test-pnpm =
@@ -67,7 +67,7 @@ let
6767
echo "testing pnpm"
6868
cd pnpm
6969
pnpm install
70-
./node_modules/.bin/prisma generate
70+
pnpm prisma generate
7171
'';
7272
};
7373
test-bun =

0 commit comments

Comments
 (0)