Skip to content

Added funding in package #35

Added funding in package

Added funding in package #35

Workflow file for this run

name: E2E Testing
on:
workflow_dispatch:
push:
branches:
- main
- dev
jobs:
testing:
name: Start E2E Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium
- name: Run Playwright tests
run: npx playwright test
continue-on-error: true