CircleCI
Config snippet.
# .circleci/config.yml
version: 2.1
jobs:
e2e:
docker: [{ image: mcr.microsoft.com/playwright:v1.47.0 }]
environment:
EPHEMAIL_KEY: $EPHEMAIL_KEY
steps:
- checkout
- run: npm ci
- run: npx playwright test
workflows:
test: { jobs: [e2e] }