Skip to content

Commit fed7917

Browse files
committed
fix(test): use packages from nixpkgs instead of environment
1 parent 3bf9285 commit fed7917

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
@@ -27,7 +27,7 @@ let
2727
echo "testing npm"
2828
${prisma.shellHook}
2929
cd npm
30-
npm ci
30+
${nixpkgs.nodejs}/bin/npm ci
3131
./node_modules/.bin/prisma generate
3232
'';
3333
};
@@ -43,7 +43,7 @@ let
4343
echo "testing pnpm"
4444
${prisma.shellHook}
4545
cd pnpm
46-
pnpm install
46+
${nixpkgs.pnpm}/bin/pnpm install
4747
./node_modules/.bin/prisma generate
4848
'';
4949
};

0 commit comments

Comments
 (0)