Skip to content

Implementing CQRS (Command Query Responsibility Segregation) in NestJ… #19

Implementing CQRS (Command Query Responsibility Segregation) in NestJ…

Implementing CQRS (Command Query Responsibility Segregation) in NestJ… #19

Workflow file for this run

name: CI/CD NRA APP
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
services:
rabbitmq:
image: rabbitmq:3-management
ports:
- 5672:5672
- 15672:15672
strategy:
matrix:
app: [driver, notification, nuber-app, ride, user-service]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Install dependencies for ${{ matrix.app }}
working-directory: apps/${{ matrix.app }}
run: npm install
#- name: Build ${{ matrix.app }}
# working-directory: apps/${{ matrix.app }}
# run: npm run build
- name: Start ${{ matrix.app }}
working-directory: apps/${{ matrix.app }}
run: nest start ${{ matrix.app }} &
#- name: Wait for service to be ready
# run: sleep 10
#- name: Run tests for ${{ matrix.app }}
# working-directory: apps/${{ matrix.app }}
# run: npm run test