chore: update CI workflow and package exports
quality / commitlint (push) Skipped
quality / changes (push) Successful in 9s
quality / docker-check (push) Skipped
quality / openapi (push) Successful in 34s
quality / web (push) Successful in 1m1s
quality / api (push) Successful in 49s
CD / quality (push) Successful in 2m40s
CD / publish (push) Successful in 3m40s

- Modified the CI workflow in `quality.yaml` to use `pnpm exec turbo` for running tests and builds, improving efficiency for the @evofw/api package.
- Added a new export for development in `package.json` of the db package, allowing direct access to the source TypeScript file.

These changes enhance the CI process and improve the development experience for the db package.
This commit is contained in:
Denozordec
2026-08-19 00:09:25 +07:00
parent 4fedf83078
commit a55dc676b9
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -257,8 +257,8 @@ jobs:
run: |
set -euxo pipefail
sh scripts/ci/pnpm-ci.sh
pnpm --filter @evofw/api test
pnpm --filter @evofw/api build
pnpm exec turbo run test --filter=@evofw/api
pnpm exec turbo run build --filter=@evofw/api
commitlint:
if: inputs.is_pull_request
+1
View File
@@ -7,6 +7,7 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"development": "./src/index.ts",
"import": "./dist/index.js"
}
},