From d6a992f4ee24ff2877cfc68953fddae0efe58a15 Mon Sep 17 00:00:00 2001 From: Rahul Gupta Date: Mon, 11 Nov 2024 04:12:04 +0530 Subject: [PATCH] chore: Ensure CI runs Node 20 Change the CI node-version to use caret range to ensure that tests are run on Node.js v20. --- .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 7df9e137..2c89132d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - node-version: [ '>=20.17.0' ] + node-version: [ '^20.17.0' ] os: [ubuntu-latest] steps: