From 29a096c6ce26c735d52c9d2d751d2d769a67f372 Mon Sep 17 00:00:00 2001 From: Norman Rusch Date: Fri, 10 Apr 2026 16:24:00 +0200 Subject: [PATCH] Test react 19 in GitHub actions --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7999a2..97fc9a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: strategy: matrix: - react: [18] + react: [18, 19] steps: - name: Git checkout @@ -40,7 +40,10 @@ jobs: node-version: '${{ steps.nvm.outputs.NVMRC }}' - name: Install dependencies with react v${{ matrix.react }} - run: npm install && npm install react@${{ matrix.react }} + run: | + npm install + npm install react@${{ matrix.react }} --save + npm install @types/react@{{ matrix.react }} --save-dev - name: Run tests run: make tests