fix: pnpm 11 CI compatibility
CI / check (pull_request) Failing after 1m8s

- Set minimumReleaseAge: 0 (pnpm 11 defaults to 1440 min)
- Add pnpm.onlyBuiltDependencies in package.json for esbuild and msw
  (pnpm 11 blocks build scripts by default)
This commit is contained in:
2026-06-04 10:10:35 +00:00
parent 1fdeb716ca
commit 6c19eea218
2 changed files with 9 additions and 1 deletions
+7 -1
View File
@@ -38,5 +38,11 @@
"bugs": {
"url": "https://github.com/shazhou-ww/united-workforce/issues"
},
"license": "MIT"
"license": "MIT",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw"
]
}
}