Skip to content

0.24.6

0.24.6 #336

Workflow file for this run

name: tests
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
react-version: [18, 19]
steps:
- uses: actions/checkout@v6
- name: Use Node.js latest
uses: actions/setup-node@v6
with:
node-version: "lts/*"
- name: Install specific React version
run: npm install react@${{ matrix.react-version }} react-dom@${{ matrix.react-version }}
- name: Install dependencies
run: npm install
- name: Run the tests
run: npm test
env:
CI: true