Skip to content

feat: Angular 14→19 upgrade + clean demo UI with fakerBr generate #2

feat: Angular 14→19 upgrade + clean demo UI with fakerBr generate

feat: Angular 14→19 upgrade + clean demo UI with fakerBr generate #2

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build library
run: npm run build:lib
- name: Copy library to src
run: npm run copy
- name: Build demo app
run: ng build dev --configuration production --base-href /ng-brazil/
env:
CI: true