File tree Expand file tree Collapse file tree 1 file changed +1
-42
lines changed Expand file tree Collapse file tree 1 file changed +1
-42
lines changed Original file line number Diff line number Diff line change 2020 - name : Add Azure artifact
2121 run : dotnet nuget add source 'https://pkgs.dev.azure.com/e-LfH/_packaging/LearningHubFeed/nuget/v3/index.json' --name 'LearningHubFeed' --username 'kevin.whittaker' --password ${{ secrets.AZURE_DEVOPS_PAT }} --store-password-in-clear-text
2222
23- - name : Use Node 12.19
24- uses : actions/setup-node@v4
25- with :
26- node-version : ' 12.19'
27-
28- - name : Install dependencies
29- run : |
30- cd ./Auth/LearningHub.Nhs.Auth
31- npm install -f
32-
33- - name : Run Webpack build
34- run : |
35- cd ./Auth/LearningHub.Nhs.Auth
36- npm run build
37-
38- - name : Setup MSBuild
39- 40-
41- - name : Build SQL Server Database project
42- run : |
43- # List all .sqlproj files except for .sqlproj
44- $sqlproj_files = Get-ChildItem -Path . -Filter *.sqlproj -Recurse
45-
46- # Build each .csproj file
47- foreach ($sqlproj_file in $sqlproj_files) {
48- Write-Host "Building $($sqlproj_file.FullName)"
49- msbuild "$($sqlproj_file.FullName)" /p:Configuration=Release
50- }
51-
52- - name : Build solution excluding SQL project
53- run : |
54- # List all .csproj files except for .sqlproj
55- $csproj_files = Get-ChildItem -Path . -Filter *.csproj -Recurse | Where-Object { $_.FullName -notmatch '\\.sqlproj$' }
56-
57- # Build each .csproj file
58- foreach ($csproj_file in $csproj_files) {
59- Write-Host "Building $($csproj_file.FullName)"
60- dotnet build "$($csproj_file.FullName)"
61- }
62-
63- # - name: Test
64- # run: dotnet test ${{ env.BuildParameters.TestProjects }}
23+
You can’t perform that action at this time.
0 commit comments