From 90995dfddbd51d6885d646dece3d37a1e3ad7fef Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Tue, 18 Oct 2022 18:55:16 +0200 Subject: [PATCH] chore: test node 19 on CI (#13474) --- .circleci/config.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 641528a60183..0411a6e11a44 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,5 +58,5 @@ workflows: name: test-node-partial-<< matrix.node-version >> matrix: parameters: - node-version: ['14', '16', '18'] + node-version: ['14', '16', '18', '19'] - test-jest-jasmine diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d7060b18db3a..c1f28d96a22c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [14.x, 16.x, 18.x, 19.x] shard: ['1/4', '2/4', '3/4', '4/4'] name: Node v${{ matrix.node-version }} on ${{ inputs.os }} (${{ matrix.shard }}) runs-on: ${{ inputs.os }}