test: add unit tests to pipeline

This commit is contained in:
2023-05-31 15:33:19 +02:00
parent 45444d9373
commit 495a63977c
29 changed files with 232 additions and 484 deletions

View File

@@ -4,7 +4,7 @@
"scripts": {
"build": "dotenv -c -- turbo run build --filter=!@openstapps/app",
"dev": "dotenv -c -- turbo run dev",
"docs": "typedoc",
"docs": "dotenv -c -- turbo run docs && typedoc",
"format": "dotenv -c -- turbo run format",
"format:fix": "dotenv -c -- turbo run format:fix",
"lint": "dotenv -c -- turbo run lint --filter=!@openstapps/app",
@@ -12,7 +12,8 @@
"publish-packages": "dotenv -c -- turbo run build format lint test && changeset version && changeset publish",
"syncpack": "syncpack list-mismatches && syncpack lint-semver-ranges",
"syncpack:fix": "syncpack format && syncpack fix-mismatches",
"test": "dotenv -c -- turbo run test --filter=!@openstapps/app && node coverage.mjs"
"test": "dotenv -c -- turbo run test --filter=!@openstapps/app && node coverage.mjs",
"turboify-pipeline": "pnpm build && pnpm run syncpack && pnpm lint && pnpm format && pnpm test && pnpm run docs"
},
"devDependencies": {
"@changesets/cli": "2.26.1",