Skip to content

Update build for v93 #184

Update build for v93

Update build for v93 #184

Workflow file for this run

name: Build Angular applications
on:
push:
branches: [ master ]
pull_request:
branches: [ master, v93 ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
working-directory: ./imxweb
run: npm install --skip-dialog
- name: Build All
working-directory: ./imxweb
run: npm run nx:build-all