Skip to content

I have made some changes to file #282

I have made some changes to file

I have made some changes to file #282

Workflow file for this run

name: Backend CI
on:
push:
branches: [ main, develop ]
paths:
- 'apps/backend/**'
- '.github/workflows/backend-ci.yml'
pull_request:
branches: [ main, develop ]
paths:
- 'apps/backend/**'
- '.github/workflows/backend-ci.yml'
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/backend
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: apps/backend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test