From b1ae5ec99660f3f4bbfe2cd1c66dafac4da25021 Mon Sep 17 00:00:00 2001 From: Bartosz Litwiniuk <> Date: Wed, 8 Jul 2026 21:38:42 +0200 Subject: [PATCH] react-native: Build windows on node v20 and test on v18 and v20 --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1febf48c..f45c8f93 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -102,16 +102,21 @@ jobs: strategy: matrix: - node-version: [18.x] + build-version: [20.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.build-version }} - run: npm ci - run: npm run build + - name: Test using Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} - run: npm test - name: smoke-test uses: ./.github/actions/smoke-tests