chore: add react compiler eslint rules #2242
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Multiple Versions | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.2.0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm build # we don't have any other workflows to test build | |
- run: pnpm test:spec | |
test_matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
react: | |
- 16.8.0 | |
- 17.0.0 | |
- 18.0.0 | |
- 18.1.0 | |
- 18.2.0 | |
- 18.3.1 | |
- 19.0.0-rc.0 | |
- 19.0.0-rc-bf3a29d097-20240603 | |
- 0.0.0-experimental-bf3a29d097-20240603 | |
devtools-skip: | |
- CI-MATRIX-NOSKIP | |
include: | |
- devtools-skip: CI-MATRIX-[2345] | |
react: 16.8.0 | |
- devtools-skip: CI-MATRIX-[1345] | |
react: 16.8.0 | |
- devtools-skip: CI-MATRIX-[1245] | |
react: 16.8.0 | |
- devtools-skip: CI-MATRIX-[1235] | |
react: 16.8.0 | |
- devtools-skip: CI-MATRIX-[1234] | |
react: 16.8.0 | |
exclude: | |
- devtools-skip: CI-MATRIX-NOSKIP | |
react: 16.8.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.2.0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
- run: pnpm install --frozen-lockfile | |
- name: Install legacy testing-library | |
if: ${{ startsWith(matrix.react, '16.') || startsWith(matrix.react, '17.') }} | |
run: pnpm add -D @testing-library/react@12.1.4 | |
- name: Patch for React 16 | |
if: ${{ startsWith(matrix.react, '16.') }} | |
run: | | |
sed -i~ '1s/^/import React from "react";/' tests/*.tsx | |
sed -i~ 's/"jsx": "react-jsx"/"jsx": "react"/' tsconfig.json | |
sed -i~ 's/import\.meta\.env[?]\.MODE/"DEVELOPMENT".toLowerCase()/' src/*.ts src/*/*.ts | |
sed -i~ "s/it('\[${DEVTOOLS_SKIP}\]/it.skip('/" tests/devtools.test.tsx | |
env: | |
DEVTOOLS_SKIP: ${{ matrix.devtools-skip }} | |
- name: Test ${{ matrix.react }} ${{ matrix.devtools-skip }} | |
run: | | |
pnpm add -D react@${{ matrix.react }} react-dom@${{ matrix.react }} | |
pnpm test:spec |