Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,37 @@ jobs:
- name: Audit discovered tests
run: pnpm test:audit

workspace-scroll-regression:
name: Workspace scroll regression
runs-on: ubuntu-24.04
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false

- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 9.0.0
run_install: false

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20.19.0
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Install Chromium
run: pnpm exec playwright install --with-deps chromium

- name: Run workspace scroll regression
run: pnpm test:e2e:workspace

build:
name: Build all packages
runs-on: ubuntu-24.04
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ test-results/
dist/
build/
.next/
.next-e2e/
out/
*.tsbuildinfo

Expand Down Expand Up @@ -125,6 +126,7 @@ scripts/jest/
**/__mocks__/
**/*.test.*
**/*.spec.*
!/e2e/**/*.spec.ts
!packages/backend/src/services/certificate-detector-seal.service.test.ts
!packages/backend/src/services/writing-detector-config.test.ts
**/jest.config.js
Expand Down
Loading
Loading