Skip to content

Commit acb8309

Browse files
committed
2 parents 921b069 + a4a8418 commit acb8309

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Playwright C# UI Tests in Docker
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
17+
- name: Set up Docker Buildx
18+
uses: docker/setup-buildx-action@v3
19+
20+
- name: Build Docker image
21+
run: docker build -t playwright-csharp-ui-tests .
22+
23+
- name: Run tests in Docker
24+
run: docker run --rm playwright-csharp-ui-tests

0 commit comments

Comments
 (0)