ensure build happens first when integ testing
Some checks failed
Build and push image for doorman-homeassistant / docker (push) Successful in 29s
Build and push Doorman UI / API / docker (push) Failing after 30s
Build and push image for doorman-homeassistant / deploy-gitainer (push) Successful in 5s

This commit is contained in:
Martin Dimitrov 2025-06-03 15:48:38 -07:00
parent 9950766b32
commit 900f413dd5

View File

@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"scripts": {
"integ-test": "export $(grep -v '^#' .env.example | grep -v '=$' | xargs) && concurrently --success first --kill-others \"bun run start\" \"bun test\"",
"integ-test": "bun run build && export $(grep -v '^#' .env.example | grep -v '=$' | xargs) && concurrently --success first --kill-others \"bun run start-twilio\" \"bun test\"",
"start-twilio": "twilio-run --load-local-env --live --port 8080",
"watch-build": "bun run --watch src/index.ts",
"start": "concurrently \"bun run watch-build\" \"bun run start-twilio\"",