Merge pull request #2 from anasabbal/NRA-02 #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |