GitHub Actions
Run e2e tests with a disposable inbox.
# .github/workflows/e2e.yml
name: e2e
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: { node-version: 20 }
- run: npm ci
- run: npx playwright install --with-deps
- run: npx playwright test
env:
EPHEMAIL_KEY: ${{ secrets.EPHEMAIL_KEY }}