WIP Add support for newer versions of react-dom #310
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 | |
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 |