https://github.com/brdgm/github-action-test-e2e
GitHub Action
https://github.com/brdgm/github-action-test-e2e
Last synced: 4 months ago
JSON representation
GitHub Action
- Host: GitHub
- URL: https://github.com/brdgm/github-action-test-e2e
- Owner: brdgm
- License: apache-2.0
- Created: 2025-03-19T21:29:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-25T15:34:33.000Z (8 months ago)
- Last Synced: 2025-10-25T17:28:54.753Z (8 months ago)
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
github-action-test-e2e
======
Composite GitHub Action to run E2E tests (Playwright) for a brdgm.me application.
Usage example:
```yaml
name: Test E2E
on:
push:
branches:
- develop
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.51.1-noble
options: --user 1001
steps:
- uses: brdgm/github-action-test-e2e@v1
```