Skip to content

Commit

Permalink
added playwright C# implementation, added github action for dotnet bu…
Browse files Browse the repository at this point in the history
…ild/test
  • Loading branch information
KungRaseri committed Dec 6, 2023
1 parent 6cec04d commit 58ae7b0
Show file tree
Hide file tree
Showing 10 changed files with 679 additions and 7 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/playwright-dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Playwright Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- run: dotnet build
- name: Ensure browsers are installed
run: pwsh bin/Debug/net8.0/playwright.ps1 install --with-deps
- name: Run your tests
run: dotnet test
4 changes: 2 additions & 2 deletions .github/workflows/playwright-typescript.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
branches: [ main ]
pull_request:
branches: [ main, master ]
branches: [ main ]
jobs:
test:
timeout-minutes: 60
Expand Down
Loading

0 comments on commit 58ae7b0

Please sign in to comment.