Skip to content

Commit

Permalink
test: add visual regression suite
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinecula committed May 2, 2024
1 parent 478dc75 commit c340ec2
Show file tree
Hide file tree
Showing 12 changed files with 25,776 additions and 25,668 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Playwright Tests
on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: lts/*

- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: npx playwright install --with-deps

- name: Run Playwright tests
run: npm run e2e

- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ storybook-static/
.DS_Store
dist/
storybook-static/
demo-storybook/
demo-storybook/

# playwright
test-results/
playwright-report/
Loading

0 comments on commit c340ec2

Please sign in to comment.