Skip to content

Merge pull request #4 from valtimo-platform/feature/add-case #9

Merge pull request #4 from valtimo-platform/feature/add-case

Merge pull request #4 from valtimo-platform/feature/add-case #9

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Build frontend
on:
push:
branches: [ "main" ]
paths: ['frontend/**']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install --global @angular/cli
working-directory: frontend/projects/valtimo/xential
- run: npm install --legacy-peer-deps
working-directory: frontend/projects/valtimo/xential
- run: npm run build
working-directory: frontend/projects/valtimo/xential