From 07fb8c7e85af90a87546044afed74084fe445260 Mon Sep 17 00:00:00 2001 From: Mide_xol Date: Sun, 30 Aug 2026 19:44:59 +0100 Subject: [PATCH] fix(merge): sync branch with upstream main and resolve conflicts (#570) --- .github/workflows/test.yml | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bfda297..46a74dd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,8 +23,11 @@ jobs: - name: Install dependencies run: npm install - - name: Validate (typecheck + lint) - run: npm run validate + - name: Run linter + run: npm run lint + + - name: Typecheck + run: npm run typecheck - name: Build run: npm run build @@ -68,22 +71,3 @@ jobs: with: name: axe-results path: axe-results.json - - e2e: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 22.x - cache: "npm" - - - name: Install dependencies - run: npm ci - - - name: Install Playwright Chromium - run: npx playwright install --with-deps chromium - - - name: Run E2E smoke tests - run: npm run test:e2e