Skip to content

chore: Add initial frontend tsconfig.json for TypeScript configuratio… #12

chore: Add initial frontend tsconfig.json for TypeScript configuratio…

chore: Add initial frontend tsconfig.json for TypeScript configuratio… #12

Workflow file for this run

name: CI
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
jobs:
build-backend:
name: Build Backend (NestJS)
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: backend/package-lock.json
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
build-frontend:
name: Build Frontend (Angular)
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build -- --configuration production