From 803613adce41f91881d570313ca12ad033508ae1 Mon Sep 17 00:00:00 2001 From: Kevin Pagtakhan Date: Fri, 25 Oct 2024 11:18:03 -0700 Subject: [PATCH] build: add node 22.x to build env matrix (#905) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69ce68834..940fa3e84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18.15.x, 20.x] + node-version: [18.15.x, 20.x, 22.x] os: [ubuntu-latest] runs-on: ${{ matrix.os }}