Skip to content

CI/CD: Init workflows. #36

CI/CD: Init workflows.

CI/CD: Init workflows. #36

Workflow file for this run

name: Angular CI/CD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22.6.0'
- name: Install dependencies
run: npm ci
working-directory: client
- name: Build the Angular app
run: npm run build --configuration=production
working-directory: client