-
Notifications
You must be signed in to change notification settings - Fork 7
50 lines (43 loc) · 1.33 KB
/
Copy pathtest-e2e.yml
File metadata and controls
50 lines (43 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
permissions:
contents: read
name: Test - E2E
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
playwright:
timeout-minutes: 7
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.55.0-noble
options: --user 1001
env:
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME: ${{ secrets.NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME }}
NEXT_PUBLIC_FATHOM_ID: ${{ secrets.NEXT_PUBLIC_FATHOM_ID }}
NEXT_PUBLIC_POSTHOG_KEY: ${{ secrets.NEXT_PUBLIC_POSTHOG_KEY }}
RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
RESEND_NEWSLETTER_AUDIENCE_ID: ${{ secrets.RESEND_NEWSLETTER_AUDIENCE_ID }}
RESEND_SIGNING_SECRET: ${{ secrets.RESEND_SIGNING_SECRET }}
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version-file: 'package.json'
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Install Playwright browsers
run: pnpm exec playwright install
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v5
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30