From 2726d2959cf2d325cfbda3a9f3024786909ca4a1 Mon Sep 17 00:00:00 2001 From: Oleksandr Mazepa Date: Mon, 31 Jul 2023 17:00:49 +0300 Subject: [PATCH] other: Add Node.js v20.x --- .github/workflows/integration-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 9facab13..a21265b2 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -15,7 +15,7 @@ jobs: name: test strategy: matrix: - node-version: [lts/fermium, lts/gallium, lts/hydrogen] + node-version: [14.x, 16.x, 18.x, 20.x] runs-on: 'ubuntu-latest' steps: - name: Checkout @@ -34,7 +34,7 @@ jobs: - name: Run build run: npm run build - - if: matrix.node-version == 'lts/hydrogen' # starting from v18 there is FormData implementation in Node.js + - if: ((matrix.node-version != '14.x') && (matrix.node-version != '16.x')) # starting from v18 there is FormData implementation in Node.js name: Run Node.js integration tests with builtin FormData run: export LAUNCH_TYPE=native && npm run test:node