chore: consolidate npm to bun in CI workflows
Pull Request / unit-tests (pull_request) Failing after 1m11s
Pull Request / e2e-tests (pull_request) Has been skipped
Pull Request / analyze-bump-type (pull_request) Has been skipped

- Update justfile to use bun instead of npm for all commands
- Fix broken test glob patterns in package.json and workflows
- Fix npm run test:acceptance:cucumber:prod to use bun
- Update pr.yml and release.yml unit test commands to use correct path format
- Run 157 unit tests (was only running ~2 due to broken glob)
This commit is contained in:
2026-05-10 21:15:15 -07:00
parent 1489848b77
commit b5b9f32a87
4 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ jobs:
docker run --rm \
-e DATABASE_URL="postgresql://user:pass@localhost:5432/dummy" \
${{ env.IMAGE_NAME }}-test:${{ steps.version.outputs.new_version }} \
bun test 'src/__tests__/unit/**' 'src/__tests__/*.test.tsx' 'src/__tests__/auth-simple.test.ts'
bun test src/__tests__/unit/ 'src/__tests__/*.test.tsx' src/__tests__/auth-simple.test.ts
- name: Build production image
if: steps.commit.outputs.committed == 'true'