An open API service indexing awesome lists of open source software.

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

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
```