Skip to content

feat: Add Veil, Gallery, and Treatments pages, a shared CardView comp… #34

feat: Add Veil, Gallery, and Treatments pages, a shared CardView comp…

feat: Add Veil, Gallery, and Treatments pages, a shared CardView comp… #34

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