Skip to content

Commit

Permalink
fix: nix yarn version
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirvolek committed Oct 27, 2023
1 parent c7559c2 commit 0dc5c56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ in
machine.wait_for_open_port(3000)
machine.succeed("cp -r ${blockfrost-backend-ryo}/libexec/source /tmp")
machine.succeed(
"cd /tmp/source && ${pkgs.yarn}/bin/yarn set version berry && ${pkgs.yarn}/bin/yarn test-integration:preview"
"cd /tmp/source && ${pkgs.yarn}/bin/yarn set version 3.6.3 && ${pkgs.yarn}/bin/yarn test-integration:preview"
)
'';
};
Expand Down Expand Up @@ -159,7 +159,7 @@ in
machine.wait_for_open_port(3000)
machine.succeed("cp -r ${blockfrost-backend-ryo}/libexec/source /tmp")
machine.succeed(
"cd /tmp/source && ${pkgs.yarn}/bin/yarn set version berry && ${pkgs.yarn}/bin/yarn test-integration:preprod"
"cd /tmp/source && ${pkgs.yarn}/bin/yarn set version 3.6.3 && ${pkgs.yarn}/bin/yarn test-integration:preprod"
)
'';
};
Expand Down

0 comments on commit 0dc5c56

Please sign in to comment.