We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d57e0c commit dd19830Copy full SHA for dd19830
.github/workflows/dotnetRelease.yml
@@ -13,7 +13,10 @@ jobs:
13
build:
14
15
runs-on: ubuntu-latest
16
-
+ strategy:
17
+ matrix:
18
+ node-version: [22.x]
19
+
20
steps:
21
- uses: actions/checkout@v4
22
- name: Setup .NET
@@ -26,3 +29,14 @@ jobs:
26
29
run: dotnet build --no-restore --configuration Release
27
30
- name: Test
28
31
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
0 commit comments