Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5bfa committed Nov 1, 2023
1 parent e0ad035 commit 9aac979
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ env:
SOLUTION_PATH: '${{ github.workspace }}\Files.sln'
PACKAGE_PROJECT_DIR: '${{ github.workspace }}\src\Files.App (Package)'
PACKAGE_PROJECT_PATH: '${{ github.workspace }}\src\Files.App (Package)\Files.Package.wapproj'
INTERACTION_TESTS_PROJECT_DIR: '${{ github.workspace }}\tests\Files.InteractionTests'
INTERACTION_TESTS_PROJECT_PATH: '${{ github.workspace }}\tests\Files.InteractionTests\Files.InteractionTests.csproj'
WORKING_DIR: ${{ github.workspace }} # Default: 'D:\a\Files\Files'
ARTIFACTS_STAGING_DIR: ${{ github.workspace }}\artifacts
Expand Down Expand Up @@ -135,8 +136,13 @@ jobs:
- name: Set full HD resolution
run: Set-DisplayResolution -Width 1920 -Height 1080 -Force

- name: Run UI tests
- name: Build interaction tests
shell: pwsh
run: 'dotnet build $env:INTERACTION_TESTS_PROJECT_PATH'

- name: Run interaction tests
shell: pwsh
run: |
dotnet test "$env:INTERACTION_TESTS_PROJECT_PATH" `
dotnet test $env:INTERACTION_TESTS_PROJECT_DIR\**\Files.InteractionTests.dll `
-a $env:PRIMARY_ARCHITECTURE `
-c $env:CONFIGURATION

0 comments on commit 9aac979

Please sign in to comment.