Description
The test job installs ripgrep as a system dep but the e2e job does not. If any e2e test shells out to rg, it will fail with "command not found."
Proposed Fix
Add sudo apt-get update && sudo apt-get install -y ripgrep to the e2e job, after checkout and before uv install.
Description
The test job installs ripgrep as a system dep but the e2e job does not. If any e2e test shells out to rg, it will fail with "command not found."
Proposed Fix
Add
sudo apt-get update && sudo apt-get install -y ripgrepto the e2e job, after checkout and before uv install.