Skip to content

WIP Add support for newer versions of react-dom #310

WIP Add support for newer versions of react-dom

WIP Add support for newer versions of react-dom #310

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18.16.0', 20, 22]
react: ['16', '17', '18', '19']
name: Node ${{ matrix.node }} / React ${{ matrix.react }}
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- run: yarn install --frozen-lockfile --ignore-engines
- name: Install react and react-dom at version ${{ matrix.react }}
run: |
yarn remove react react-dom --ignore-engines
yarn add react@${{ matrix.react }} react-dom@${{ matrix.react }} --ignore-engines
- run: yarn test --colors
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- run: yarn install --frozen-lockfile --ignore-engines
- run: yarn lint