Skip to content

Commit

Permalink
fix playwright action issue
Browse files Browse the repository at this point in the history
  • Loading branch information
noxify committed Dec 20, 2024
1 parent 509fab3 commit 6226dd1
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
branches: [main, master]
pull_request:
branches: [ main, master ]
branches: [main, master]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
- uses: actions/checkout@v4
- name: Setup
uses: ./tooling/github/setup
- name: Install Playwright Browsers
run: pnpm playwright:init
- name: Run Playwright tests for our nextjs app
run: pnpm test:e2e:nextjs
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Install Playwright Browsers
run: pnpm playwright:init
- name: Run Playwright tests for our nextjs app
run: pnpm test:e2e:nextjs
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30

0 comments on commit 6226dd1

Please sign in to comment.