From 94ba88dd9487bc5ee902f106a23d4a2140126f07 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Mon, 21 Oct 2024 18:10:39 +0200 Subject: [PATCH] tests(deps): add node.js 23 (current) to tests (#1281) --- .github/workflows/example-node-versions.yml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/example-node-versions.yml b/.github/workflows/example-node-versions.yml index d00a014bf..e6a26e19e 100644 --- a/.github/workflows/example-node-versions.yml +++ b/.github/workflows/example-node-versions.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - node: [18, 20, 22] + node: [18, 20, 22, 23] name: Cypress E2E on Node v${{ matrix.node }} steps: - name: Setup Node diff --git a/README.md b/README.md index 4bf92ce4c..dc9c542ad 100644 --- a/README.md +++ b/README.md @@ -529,7 +529,7 @@ jobs: # let's make sure our "app" works on several versions of Node strategy: matrix: - node: [18, 20, 22] + node: [18, 20, 22, 23] name: E2E on Node v${{ matrix.node }} steps: - name: Setup Node @@ -1290,7 +1290,7 @@ jobs: # let's make sure our "app" works on several versions of Node strategy: matrix: - node: [18, 20, 22] + node: [18, 20, 22, 23] name: E2E on Node v${{ matrix.node }} steps: - name: Setup Node @@ -1324,7 +1324,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - node: [18, 20, 22] + node: [18, 20, 22, 23] name: E2E on Node v${{ matrix.node }} steps: - uses: actions/setup-node@v4 @@ -1665,7 +1665,7 @@ jobs: Node.js is required to run this action. The recommended version `v6` supports: -- **Node.js** 18.x, 20.x and 22.x +- **Node.js** 18.x, 20.x, 22.x and 23.x and is generally aligned with [Node.js's release schedule](https://github.com/nodejs/Release).