690615:1528 237 #01.1
CI / CD Pipeline / build (push) Failing after 5m57s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-06-15 15:28:25 +07:00
parent 4dde6570c1
commit 97b82e8116
12 changed files with 109 additions and 272 deletions
+17 -7
View File
@@ -28,33 +28,43 @@
## Project setup
```bash
$ npm install
# ใช้ pnpm (workspace monorepo)
$ pnpm install
```
## Compile and run the project
```bash
# development
$ npm run start
$ pnpm run start
# watch mode
$ npm run start:dev
$ pnpm run start:dev
# production mode
$ npm run start:prod
$ pnpm run start:prod
```
## Run tests
```bash
# unit tests
$ npm run test
$ pnpm run test
# e2e tests
$ npm run test:e2e
$ pnpm run test:e2e
# test coverage
$ npm run test:cov
$ pnpm run test:cov
```
## Linting
```bash
# ใช้ pnpm exec หรือ pnpm แทน npx
$ pnpm exec eslint "src/**/*.ts"
# หรือ
$ pnpm eslint "src/**/*.ts"
```
## Deployment