Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
branches: [ main ]
pull_request:
branches: [ main, master ]
branches: [ main ]
jobs:
test:
timeout-minutes: 60
timeout-minutes: 5
Comment thread
schalkneethling marked this conversation as resolved.
Outdated
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
node-version: 24
- name: Install dependencies
run: npm ci
run: pnpm install --frozen-lockfile
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
Expand All @@ -24,4 +24,4 @@ jobs:
with:
name: playwright-report
path: playwright-report/
retention-days: 30
retention-days: 7
Loading