Closed joshwlewis closed 3 months ago
Describe the bug
When using Heroku CI with a pnpm application, the test script attempts to run npm test. Ideally, this should run the pnpm equivalent command. It seems like there is a missing condition for pnpm here: https://github.com/heroku/heroku-buildpack-nodejs/blob/main/bin/test#L3-L8.
pnpm
test
npm test
Describe the bug
When using Heroku CI with a
pnpm
application, thetest
script attempts to runnpm test
. Ideally, this should run thepnpm
equivalent command. It seems like there is a missing condition forpnpm
here: https://github.com/heroku/heroku-buildpack-nodejs/blob/main/bin/test#L3-L8.