Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/PlaywrightProjectTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@ name: Playwright project tests

on:
workflow_dispatch:
inputs:
runner:
description: "Select the runner"
required: false
type: choice
options:
- ubuntu-latest
- windows-latest
default: ubunntu-latest
pull_request:

jobs:
PlaywrightProjectTests:
runs-on: ubuntu-latest
runs-on: ${{ inputs.runner || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET Core SDK '8.0.x'
uses: actions/setup-dotnet@v4
with:
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/SeleniumProjectTests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: Selenium project tests

on:
workflow_dispatch:
inputs:
runner:
description: "Select the runner"
required: false
type: choice
options:
- windows-latest
- ubuntu-latest
default: windows-latest
pull_request:
branches: [ main ]

Expand All @@ -11,10 +20,10 @@ env:
jobs:
build:

runs-on: windows-latest
runs-on: ${{ inputs.runner || 'windows-latest' }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
Expand Down
Loading