We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2a0764 commit 05ced27Copy full SHA for 05ced27
1 file changed
.github/workflows/ci.yml
@@ -65,14 +65,11 @@ jobs:
65
- name: "Run Lint"
66
run: bun run lint
67
68
- - name: "Build Server"
69
- run: bun run build:server
70
-
71
- - name: "Build Worker"
72
- run: bun run build:worker
+ - name: "Run Build"
+ run: bun run build
73
74
- name: "Verify Build Output"
75
run: |
76
ls -lh dist/
77
- test -f dist/server/serve.js || exit 1
78
- test -f dist/worker/index.js || exit 1
+ test -f dist/src/serve.js || exit 1
+ test -f dist/src/bull/index.js || exit 1
0 commit comments