Skip to content

feat: integrate Stripe subscription flow & add e2e verification tests #5

feat: integrate Stripe subscription flow & add e2e verification tests

feat: integrate Stripe subscription flow & add e2e verification tests #5

Workflow file for this run

name: E2E Tests
on:
pull_request:
branches-ignore:
- main
workflow_dispatch:
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: install playwright browsers
run: pnpm exec playwright install --with-deps chromium
- name: run e2e tests
run: pnpm test:e2e
- uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: test-results/
retention-days: 7