Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 436 Bytes

File metadata and controls

27 lines (21 loc) · 436 Bytes

github-action-test-e2e

Composite GitHub Action to run E2E tests (Playwright) for a brdgm.me application.

Usage example:

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