Skip to content

improve detection of signal names #1967

improve detection of signal names

improve detection of signal names #1967

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 11.3.0
- name: Install Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Install Playwright browsers
run: pnpm exec playwright install chromium
- name: Tests
run: pnpm test && pnpm test:devtools-ui
- name: Test production build
run: pnpm test:minify
- name: Test react production build
run: pnpm test:prod
- name: Prepare runtime with React 16
working-directory: packages/react/runtime
run: |
pnpm i react@16 react-dom@16 react-router-dom@5
- name: Test React 16
working-directory: packages/react
run: |
pnpm i react@16 react-dom@16 react-router-dom@5
pnpm -w exec cross-env COVERAGE=true MINIFY=true vitest run packages/react