Bump Selenium.WebDriver.ChromeDriver from 144.0.7559.9600 to 144.0.7559.10900 #526
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E Test | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: | |
| - main | |
| jobs: | |
| eun-e2e-tests: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: global.json | |
| - name: Build solution | |
| run: dotnet build | |
| - name: Run the web app and E2E tests | |
| run: | | |
| dotnet run --project src/CookieSample/CookieSample.csproj --no-build & | |
| sleep 3 | |
| dotnet test src/CookieSample.E2ETests/CookieSample.E2ETests.csproj | |
| - name: Upload logs | |
| uses: actions/upload-artifact@v6 | |
| if: failure() | |
| with: | |
| name: logs | |
| path: src/CookieSample.E2ETests/bin/Debug/net9.0/logs |