Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/example-node-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
node:
- 22
- 24
- 25
- 26
name: Cypress E2E on Node v${{ matrix.node }}
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ See [Releases](https://github.com/cypress-io/github-action/releases) for full de

| Version | Changes |
| ------- | ------------------------------------------------------------------------------------------------------------ |
| v7.4.0 | Examples remove Node.js 25. End of support for Node.js 25. |
| v7.3.0 | Add parameter `expose` for [`Cypress.expose()`](https://docs.cypress.io/api/cypress-api/expose) support |
| v7.2.0 | Examples remove Node.js 20. End of support for Node.js 20. |
| v7.1.0 | Add parameter `package-manager-cache` |
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,6 @@ jobs:
node:
- 22
- 24
- 25
- 26
name: E2E on Node v${{ matrix.node }}
steps:
Expand Down Expand Up @@ -1418,7 +1417,6 @@ jobs:
node:
- 22
- 24
- 25
- 26
name: E2E on Node v${{ matrix.node }}
steps:
Expand Down Expand Up @@ -1456,7 +1454,6 @@ jobs:
node:
- 22
- 24
- 25
- 26
name: E2E on Node v${{ matrix.node }}
steps:
Expand Down Expand Up @@ -1925,7 +1922,7 @@ jobs:

Node.js is required to run this action. The recommended version `v7` supports:

- **Node.js** 22.x, 24.x, 25.x and 26.x
- **Node.js** 22.x, 24.x and 26.x

and is generally aligned with [Node.js's release schedule](https://github.com/nodejs/Release#readme).

Expand Down
4 changes: 3 additions & 1 deletion docs/MAINTENANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ The examples make use of [npm](https://www.npmjs.com/), [pnpm](https://pnpm.io/)

- [npm](https://www.npmjs.com/), which is installed with [Node.js](https://nodejs.org/).

- [corepack](https://github.com/nodejs/corepack). This is currently installed with [Node.js](https://nodejs.org/). Due to plans of Node.js to remove it in versions Node.js `25.x` and later, you may need to install it separately with `npm install -g corepack`.
- [corepack](https://github.com/nodejs/corepack).
This is installed with [Node.js](https://nodejs.org/) <=24 and is only used for Yarn Modern examples.
You may need to install it separately with `npm install -g corepack` for Node.js >24.

- [Visual Studio Code](https://code.visualstudio.com/) or other editor

Expand Down
Loading