Skip to content

Fix snap points

Fix snap points #86

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- main
pull_request:
paths:
- 'packages/**'
jobs:
tests:
name: Playwright Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm install -g [email protected]
- run: pnpm install --no-frozen-lockfile
- run: pnpm build:package
- run: npx playwright install --with-deps
- run: pnpm test || exit 1
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playground/playwright-report/
retention-days: 30