fix: enable corepack and install yarn before pnpm install

This commit is contained in:
Justin Edmund 2025-11-23 03:41:31 -08:00
parent 79a439c634
commit 59714b2d83

View file

@ -1,7 +1,15 @@
{
"packages": {
"node": "20",
"pnpm": "9",
"yarn": "1"
"pnpm": "9"
},
"steps": {
"install": {
"commands": [
"corepack enable",
"corepack prepare yarn@1 --activate",
"..."
]
}
}
}