test: добавить площадку интеграционного тестирования

- добавлены consumer fixtures для React и Next.js
- добавлены typecheck, production build и браузерные smoke-тесты
- добавлена интеграционная проверка в CI
This commit is contained in:
2026-07-13 20:08:31 +03:00
parent 7992adc9d3
commit 632b450c8b
130 changed files with 26424 additions and 0 deletions

View File

@@ -40,3 +40,36 @@ jobs:
- name: Build
run: npm run build
integration:
name: Integration playground
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
cache-dependency-path: |
package-lock.json
integration/package-lock.json
- name: Install package dependencies
run: npm ci
- name: Build package
run: npm run build:package
- name: Install playground dependencies
run: npm ci --prefix integration
- name: Install Chromium
run: npm exec --prefix integration -- playwright install --with-deps chromium
- name: Verify playground
run: npm run verify --prefix integration