Add worker run step to server cli (#4619)

* Add worker run step to server cli

* add build step

* fix
This commit is contained in:
Weiko
2024-03-25 11:00:11 +01:00
committed by GitHub
parent 922d632607
commit a560746fcd

View File

@ -31,5 +31,11 @@ jobs:
run: yarn nx lint twenty-server
- name: Server / Run jest tests
run: yarn nx test twenty-server
# - name: Server / Run e2e tests
# run: yarn nx test:e2e twenty-server
- name: Server / Build
run: yarn nx build twenty-server
- name: Server / Write .env
run: |
cd packages/twenty-server
cp .env.example .env
- name: Worker / Run
run: MESSAGE_QUEUE_TYPE=sync yarn nx queue:work twenty-server