Skip to content

🧹 chore: remove leftover console.log in veil-form.component #43

🧹 chore: remove leftover console.log in veil-form.component

🧹 chore: remove leftover console.log in veil-form.component #43

Workflow file for this run

# name: Build NestJS API
# on:
# push:
# branches:
# - main
# paths:
# - "backend/**"
# jobs:
# build-backend:
# runs-on: ubuntu-latest
# timeout-minutes: 10 # Π—Π°Ρ‰ΠΈΡ‚Π° ΠΎΡ‚ бСсконСчного зависания
# steps:
# - name: Checkout code
# uses: actions/checkout@v4.2.2
# # 1. НастраиваСм Node.js ΠΈ ΠΊΠ΅ΡˆΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ для npm
# - name: Setup Node.js
# uses: actions/setup-node@v4.1.0
# with:
# node-version: "20"
# cache: "npm" # Π’Π΅ΠΏΠ΅Ρ€ΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ кСш npm
# # 2. УстанавливаСм зависимости
# # Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌ npm ci для максимальной ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½ΠΎΡΡ‚ΠΈ Π² CI/CD
# # Π€Π»Π°Π³ --legacy-peer-deps Π½ΡƒΠΆΠ΅Π½ для ΠΊΠΎΡ€Ρ€Π΅ΠΊΡ‚Π½ΠΎΠΉ Ρ€Π°Π±ΠΎΡ‚Ρ‹ Nx ΠΈ зависимостСй Angular/NestJS
# - name: Install dependencies
# run: npm ci --legacy-peer-deps
# # 3. Π‘Π±ΠΎΡ€ΠΊΠ° Ρ‡Π΅Ρ€Π΅Π· Nx
# - name: Build NestJS
# run: npx nx build api --prod
# # 4. Π”Π΅ΠΏΠ»ΠΎΠΉ Π±ΠΈΠ»Π΄Π° Π² Π²Π΅Ρ‚ΠΊΡƒ gh-backend
# - name: Deploy Build to gh-backend branch
# uses: JamesIves/github-pages-deploy-action@v4.7.2
# with:
# folder: dist/apps/api
# branch: gh-backend
# token: ${{ secrets.GITHUB_TOKEN }}
# clean: true