Skip to content

Restructure backend to follow NestJS monorepo structure #13

Restructure backend to follow NestJS monorepo structure

Restructure backend to follow NestJS monorepo structure #13

name: ci-backend-test
on:
pull_request:
push:
branches:
- master
jobs:
test:
name: Backend Tests
runs-on: ubuntu-latest
strategy:
matrix:
commands: ['format:ci', 'lint:ci', build, 'test:ci']
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v2-beta
with:
node-version: '18'
- name: Install backend dependencies
run: cd backend; yarn install --frozen-lockfile;
- name: Start microservices
run: cd backend; yarn start:ci;
- name: Run backend tests
run: cd backend; yarn run ${{ matrix.commands }}