Skip to content

Commit dd19830

Browse files
committed
combined
1 parent 5d57e0c commit dd19830

File tree

2 files changed

+15
-35
lines changed

2 files changed

+15
-35
lines changed

.github/workflows/dotnetRelease.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
build:
1414

1515
runs-on: ubuntu-latest
16-
16+
strategy:
17+
matrix:
18+
node-version: [22.x]
19+
1720
steps:
1821
- uses: actions/checkout@v4
1922
- name: Setup .NET
@@ -26,3 +29,14 @@ jobs:
2629
run: dotnet build --no-restore --configuration Release
2730
- name: Test
2831
run: dotnet test --no-build --verbosity normal --configuration Release
32+
33+
- name: HeroesDemoBuild
34+
uses: actions/setup-node@v4
35+
with:
36+
node-version: ${{ matrix.node-version }}
37+
cache: 'npm'
38+
working-directory: ./HeroesDemo
39+
run: npm i
40+
- run: ng build --configuration=production
41+
42+

.github/workflows/node.js.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)