Skip to content

feat: button to copy preview SVG #14

feat: button to copy preview SVG

feat: button to copy preview SVG #14

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main, next ]
pull_request:
branches: [ main, next ]
jobs:
test:
environment: testing-review
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-node@v6
with:
node-version: lts/*
- name: Install dependencies
run: npm ci # ci: "clean install"
- name: Install Playwright Chromium deps & browser
run: npx playwright install-deps chromium && npx playwright install chromium
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30