82e0ef17e9
ASP.NET AJAX / build_web_app (push) Waiting to run
Angular / build_angular (push) Waiting to run
ASP.NET Core (with Reporting) / build_windows (push) Waiting to run
Blazor (with Reporting) / build_windows (push) Waiting to run
Blazor (with Reporting) / build_linux (push) Waiting to run
Console (.NET) / build_console (arm64, linux) (push) Waiting to run
Console (.NET) / build_console (arm64, win) (push) Waiting to run
Console (.NET) / build_console (x64, linux) (push) Waiting to run
Console (.NET) / build_console (x64, win) (push) Waiting to run
MAUI / Windows Smoketest (push) Waiting to run
MAUI / Android Smoketest (push) Waiting to run
MAUI / iOS Smoketest (push) Waiting to run
MAUI / MacCatalyst Smoketest (push) Waiting to run
WinForms (.NET Framework) / build_desktop (Release, x64) (push) Waiting to run
WinForms (.NET Framework) / build_desktop (Release, x86) (push) Waiting to run
WinUI3 / build-windows (push) Waiting to run
WPF (.NET Framework) / build_desktop (Release, x64) (push) Waiting to run
WPF (.NET Framework) / build_desktop (Release, x86) (push) Waiting to run
ASP.NET Core (with Reporting) - Docker / Microsoft Base - Publish to Docker Hub (push) Waiting to run
ASP.NET Core (with Reporting) - Docker / CentOS Base - Publish to Docker Hub (push) Waiting to run
Blazor (with Reporting) - Docker / Dockerfile Build and Publish (push) Waiting to run
38 lines
885 B
YAML
38 lines
885 B
YAML
name: Angular
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "angular/*"
|
|
paths:
|
|
- 'src/Kendo/angular_demo/**/*'
|
|
- '.github/workflows/main_build-angular.yml'
|
|
|
|
jobs:
|
|
build_angular:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build App
|
|
working-directory: src/Kendo/angular_demo
|
|
run: |
|
|
# 1. Clean the angular cache, to avoid using any expired keys
|
|
rm -rf .angular/cache
|
|
|
|
# 2. Install your project dependencies
|
|
npm install
|
|
# npm install --save @progress/kendo-licensing; # if missing from package.json
|
|
|
|
#3. Activate
|
|
npx kendo-ui-license activate
|
|
|
|
#4. Build the project
|
|
npm run build --prod
|
|
env:
|
|
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
|