chore: migrate to pnpm for package management and update CI configuration

- Replaced npm with pnpm in the CI configuration and Dockerfile for improved dependency management.
- Updated package.json to specify pnpm as the package manager.
- Modified installation instructions in README.md to reflect the use of pnpm.
- Enhanced the build process in the Dockerfile to utilize pnpm for installing dependencies and building the application.
This commit is contained in:
AmirReza Jamali
2026-04-25 15:20:23 +03:30
parent 9b3bd3d1f5
commit 84d34866be
5 changed files with 41 additions and 27 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"setup-worktree": [
"npm install"
"pnpm install"
]
}