ci: enhance GitHub Actions workflow for performance and caching
Some checks failed
CI/CD Pipeline / Quick Checks (pull_request) Failing after 9s
CI/CD Pipeline / ESLint (pull_request) Has been skipped
CI/CD Pipeline / Test & Coverage (pull_request) Has been skipped
CI/CD Pipeline / Build Application (pull_request) Has been skipped
CI/CD Pipeline / Security Audit (pull_request) Has been skipped

This commit is contained in:
2025-05-27 13:02:05 +02:00
parent 76dd9cd838
commit 9498026e71
5 changed files with 192 additions and 37 deletions

View File

@ -13,7 +13,10 @@
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:ci": "jest --ci --coverage --watchAll=false --maxWorkers=2",
"test:fast": "jest --watchAll=false --maxWorkers=50%",
"test:coverage": "jest --coverage --watchAll=false",
"ci:all": "bun run type-check && bun run lint && bun run test:ci && bun run build",
"prepare": "husky"
},
"dependencies": {