Skip to content

Commit

Permalink
Add worker run step to server cli (#4619)
Browse files Browse the repository at this point in the history
* Add worker run step to server cli

* add build step

* fix
  • Loading branch information
Weiko authored Mar 25, 2024
1 parent 922d632 commit a560746
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a560746

Please sign in to comment.