Skip to content

fix(query-sync): debounce history.replaceState to stay under Safari l… #114

fix(query-sync): debounce history.replaceState to stay under Safari l…

fix(query-sync): debounce history.replaceState to stay under Safari l… #114

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm audit --omit=dev
- run: npm run lint
- run: npm run type-check
- run: node scripts/check-translations.mjs
- run: npm test
- run: npm run build
# Integration tests (Playwright)
- run: npx playwright install --with-deps chromium firefox
- run: npx playwright test
- uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: playwright-report/
retention-days: 7