π§Ή chore: remove leftover console.log in veil-form.component #43
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |