We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acb8309 commit c8be3e5Copy full SHA for c8be3e5
.github/workflows/DockerImpTests.yml
@@ -1,24 +1,21 @@
1
name: Playwright C# UI Tests in Docker
2
3
on:
4
- push:
5
- branches: [ master ]
6
- pull_request:
7
+ workflow_dispatch: # 👈 This allows manual run from GitHub Actions UI
8
9
jobs:
10
test:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - name: Checkout repository
+ - name: ⬇️ Checkout repository
15
uses: actions/checkout@v4
16
17
- - name: Set up Docker Buildx
+ - name: 🐳 Set up Docker Buildx
18
uses: docker/setup-buildx-action@v3
19
20
- - name: Build Docker image
+ - name: 🔨 Build Docker image
21
run: docker build -t playwright-csharp-ui-tests .
22
23
- - name: Run tests in Docker
+ - name: 🧪 Run tests in Docker
24
run: docker run --rm playwright-csharp-ui-tests
0 commit comments