Skip to content

Commit

Permalink
πŸ§‘πŸ»β€πŸ”§ Rearrange order of fast feedback workflow
Browse files Browse the repository at this point in the history
Do the `dotnet package add` before the build
  • Loading branch information
roycornelissen committed Oct 21, 2023
1 parent fc59a41 commit 152640d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/compile-and-test-fast-feedback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,16 @@ jobs:

- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore

- name: add markdown report logger for frontend project
- name: add markdown report logger for unittest project
run: dotnet add unittests/unittests.csproj package LiquidTestReports.Markdown

- name: Build
run: dotnet build --no-restore

- name: Test
run: dotnet test --no-build --logger "liquid.md;logfilename=testResults.md" unittests/unittests.csproj

- name: Output the results to the actions jobsummary
if: always()
run: cat $(find . -name testResults.md) >> $GITHUB_STEP_SUMMARY

0 comments on commit 152640d

Please sign in to comment.