Skip to content

Feature/full stack app #1

Feature/full stack app

Feature/full stack app #1

Workflow file for this run

name: Angular Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.19.x
- name: Install dependencies
run: npm ci
- name: Build Example
run: npm run build